Index: Makefile
===================================================================
--- Makefile (nonexistent)
+++ Makefile (revision 5)
@@ -0,0 +1,56 @@
+
+COMPONENT_TARGETS = $(HARDWARE_NOARCH)
+
+
+include ../../../../build-system/constants.mk
+
+
+url = $(DOWNLOAD_SERVER)/sources/packages/l/boost
+
+versions = 1.77.0
+pkgname = boost
+suffix = tar.bz2
+
+tarballs = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s = $(addsuffix .sha1sum, $(tarballs))
+
+patches = $(CURDIR)/patches/boost-1.77.0-addr2line.patch
+
+.NOTPARALLEL: $(patches)
+
+
+BUILD_TARGETS = $(tarballs) $(sha1s) $(patches)
+
+
+include ../../../../build-system/core.mk
+
+
+.PHONY: download_clean
+
+
+$(tarballs):
+ @echo -e "\n======= Downloading source tarballs =======\n" ; \
+ for tarball in $(tarballs) ; do \
+ echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
+ done ; wait
+
+$(sha1s): $(tarballs)
+ @for sha in $@ ; do \
+ echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
+ echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
+ touch $$sha ; \
+ echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
+ sha1sum --check $$sha ; ret="$$?" ; \
+ if [ "$$ret" == "1" ]; then \
+ echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
+ exit 1 ; \
+ fi ; \
+ done
+
+$(patches): $(sha1s)
+ @echo -e "\n======= Create Patches =======\n" ; \
+ ( cd create-1.77.0-addr2line-patch ; ./create.patch.sh ) ; \
+ echo -e "\n"
+
+download_clean:
+ @rm -f $(tarballs) $(sha1s) $(patches)
Index: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build/Jamfile.v2
===================================================================
--- create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build/Jamfile.v2 (nonexistent)
+++ create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build/Jamfile.v2 (revision 5)
@@ -0,0 +1,145 @@
+# Copyright (C) 2016-2019, Antony Polukhin.
+#
+# Use, modification and distribution is subject to the Boost Software License,
+# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+#
+
+project
+ : source-location .
+ : requirements
+ <visibility>hidden
+ ;
+
+lib dl ;
+lib gcc_s ;
+lib Dbgeng ;
+lib ole32 ;
+
+
+local LIBBACKTRACE_PATH = [ modules.peek : LIBBACKTRACE_PATH ] ;
+lib backtrace
+ :
+ : <search>$(LIBBACKTRACE_PATH)/lib <link>static
+ :
+ : <include>$(LIBBACKTRACE_PATH)/include
+ ;
+
+actions mp_simple_run_action
+{
+ $(>) > $(<)
+}
+
+rule mp-run-simple ( sources + : args * : input-files * : requirements * : target-name )
+{
+ exe $(target-name)_exe : $(sources) : $(requirements) ;
+ explicit $(target-name)_exe ;
+ make $(target-name).output : $(target-name)_exe : @mp_simple_run_action ;
+ explicit $(target-name).output ;
+ alias $(target-name) : $(target-name).output ;
+}
+
+mp-run-simple has_backtrace.cpp : : : <library>backtrace : libbacktrace ;
+explicit libbacktrace ;
+
+mp-run-simple has_addr2line.cpp : : : : addr2line ;
+explicit addr2line ;
+
+mp-run-simple has_windbg.cpp : : : <library>Dbgeng <library>ole32 : WinDbg ;
+explicit WinDbg ;
+
+mp-run-simple has_windbg_cached.cpp : : : <library>Dbgeng <library>ole32 : WinDbgCached ;
+explicit WinDbgCached ;
+
+local libraries ;
+
+lib boost_stacktrace_noop
+ : # sources
+ ../src/noop.cpp
+ : # requirements
+ <warnings>all
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_noop ;
+
+lib boost_stacktrace_backtrace
+ : # sources
+ ../src/backtrace.cpp
+ : # requirements
+ <warnings>all
+ <target-os>linux:<library>dl
+ <library>backtrace
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//libbacktrace : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_backtrace ;
+
+lib boost_stacktrace_addr2line
+ : # sources
+ ../src/addr2line.cpp
+ : # requirements
+ <warnings>all
+ <target-os>linux:<library>dl
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//addr2line : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_addr2line ;
+
+lib boost_stacktrace_basic
+ : # sources
+ ../src/basic.cpp
+ : # requirements
+ <warnings>all
+ <target-os>linux:<library>dl
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//WinDbg : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_basic ;
+
+lib boost_stacktrace_windbg
+ : # sources
+ ../src/windbg.cpp
+ : # requirements
+ <warnings>all
+ <library>Dbgeng <library>ole32
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//WinDbg : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_windbg ;
+
+lib boost_stacktrace_windbg_cached
+ : # sources
+ ../src/windbg_cached.cpp
+ : # requirements
+ <warnings>all
+ <library>Dbgeng <library>ole32
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//WinDbgCached : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_windbg_cached ;
+
+boost-install $(libraries) ;
Index: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build/Jamfile.v2.in
===================================================================
--- create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build/Jamfile.v2.in (nonexistent)
+++ create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build/Jamfile.v2.in (revision 5)
@@ -0,0 +1,145 @@
+# Copyright (C) 2016-2019, Antony Polukhin.
+#
+# Use, modification and distribution is subject to the Boost Software License,
+# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+# http://www.boost.org/LICENSE_1_0.txt)
+#
+
+project
+ : source-location .
+ : requirements
+ <visibility>hidden
+ ;
+
+lib dl ;
+lib gcc_s ;
+lib Dbgeng ;
+lib ole32 ;
+
+
+local LIBBACKTRACE_PATH = [ modules.peek : LIBBACKTRACE_PATH ] ;
+lib backtrace
+ :
+ : <search>$(LIBBACKTRACE_PATH)/lib <link>static
+ :
+ : <include>$(LIBBACKTRACE_PATH)/include
+ ;
+
+actions mp_simple_run_action
+{
+ $(>) > $(<)
+}
+
+rule mp-run-simple ( sources + : args * : input-files * : requirements * : target-name )
+{
+ exe $(target-name)_exe : $(sources) : $(requirements) ;
+ explicit $(target-name)_exe ;
+ make $(target-name).output : $(target-name)_exe : @mp_simple_run_action ;
+ explicit $(target-name).output ;
+ alias $(target-name) : $(target-name).output ;
+}
+
+mp-run-simple has_backtrace.cpp : : : <library>backtrace : libbacktrace ;
+explicit libbacktrace ;
+
+mp-run-simple has_addr2line.cpp : : : : addr2line ;
+explicit addr2line ;
+
+mp-run-simple has_windbg.cpp : : : <library>Dbgeng <library>ole32 : WinDbg ;
+explicit WinDbg ;
+
+mp-run-simple has_windbg_cached.cpp : : : <library>Dbgeng <library>ole32 : WinDbgCached ;
+explicit WinDbgCached ;
+
+local libraries ;
+
+lib boost_stacktrace_noop
+ : # sources
+ ../src/noop.cpp
+ : # requirements
+ <warnings>all
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_noop ;
+
+lib boost_stacktrace_backtrace
+ : # sources
+ ../src/backtrace.cpp
+ : # requirements
+ <warnings>all
+ <target-os>linux:<library>dl
+ <library>backtrace
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//libbacktrace : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_backtrace ;
+
+lib boost_stacktrace_addr2line
+ : # sources
+ ../src/addr2line.cpp
+ : # requirements
+ <warnings>all
+ <target-os>linux:<library>dl
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds @ADDR2LINE@ : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_addr2line ;
+
+lib boost_stacktrace_basic
+ : # sources
+ ../src/basic.cpp
+ : # requirements
+ <warnings>all
+ <target-os>linux:<library>dl
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//WinDbg : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_basic ;
+
+lib boost_stacktrace_windbg
+ : # sources
+ ../src/windbg.cpp
+ : # requirements
+ <warnings>all
+ <library>Dbgeng <library>ole32
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//WinDbg : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_windbg ;
+
+lib boost_stacktrace_windbg_cached
+ : # sources
+ ../src/windbg_cached.cpp
+ : # requirements
+ <warnings>all
+ <library>Dbgeng <library>ole32
+ <link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ [ check-target-builds ../build//WinDbgCached : : <build>no ]
+ : # default build
+ : # usage-requirements
+ #<link>shared:<define>BOOST_STACKTRACE_DYN_LINK=1
+ ;
+
+libraries += boost_stacktrace_windbg_cached ;
+
+boost-install $(libraries) ;
Index: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build
===================================================================
--- create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build (nonexistent)
+++ create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build (revision 5)
Property changes on: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace/build
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace
===================================================================
--- create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace (nonexistent)
+++ create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace (revision 5)
Property changes on: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs/stacktrace
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs
===================================================================
--- create-1.77.0-addr2line-patch/boost-1.77.0-new/libs (nonexistent)
+++ create-1.77.0-addr2line-patch/boost-1.77.0-new/libs (revision 5)
Property changes on: create-1.77.0-addr2line-patch/boost-1.77.0-new/libs
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.77.0-addr2line-patch/boost-1.77.0-new
===================================================================
--- create-1.77.0-addr2line-patch/boost-1.77.0-new (nonexistent)
+++ create-1.77.0-addr2line-patch/boost-1.77.0-new (revision 5)
Property changes on: create-1.77.0-addr2line-patch/boost-1.77.0-new
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: create-1.77.0-addr2line-patch/create.patch.sh
===================================================================
--- create-1.77.0-addr2line-patch/create.patch.sh (nonexistent)
+++ create-1.77.0-addr2line-patch/create.patch.sh (revision 5)
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+VERSION=1.77.0
+
+tar --files-from=file.list -xjvf ../boost-$VERSION.tar.bz2
+mv boost-$VERSION boost-$VERSION-orig
+
+cp -rf ./boost-$VERSION-new ./boost-$VERSION
+
+diff --unified -Nr boost-$VERSION-orig boost-$VERSION > boost-$VERSION-addr2line.patch
+
+mv boost-$VERSION-addr2line.patch ../patches
+
+rm -rf ./boost-$VERSION
+rm -rf ./boost-$VERSION-orig
Property changes on: create-1.77.0-addr2line-patch/create.patch.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Index: create-1.77.0-addr2line-patch/file.list
===================================================================
--- create-1.77.0-addr2line-patch/file.list (nonexistent)
+++ create-1.77.0-addr2line-patch/file.list (revision 5)
@@ -0,0 +1 @@
+boost-1.77.0/libs/stacktrace/build/Jamfile.v2
Index: create-1.77.0-addr2line-patch
===================================================================
--- create-1.77.0-addr2line-patch (nonexistent)
+++ create-1.77.0-addr2line-patch (revision 5)
Property changes on: create-1.77.0-addr2line-patch
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: patches/README
===================================================================
--- patches/README (nonexistent)
+++ patches/README (revision 5)
@@ -0,0 +1,6 @@
+
+/* begin *
+
+ TODO: Leave some comment here.
+
+ * end */
Index: patches
===================================================================
--- patches (nonexistent)
+++ patches (revision 5)
Property changes on: patches
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~
Index: .
===================================================================
--- . (nonexistent)
+++ . (revision 5)
Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,73 ##
+
+# install dir
+dist
+
+# Target build dirs
+.a1x-newlib
+.a2x-newlib
+.at91sam7s-newlib
+
+.build-machine
+
+.a1x-glibc
+.a2x-glibc
+.h3-glibc
+.h5-glibc
+.i586-glibc
+.i686-glibc
+.imx6-glibc
+.jz47xx-glibc
+.makefile
+.am335x-glibc
+.omap543x-glibc
+.p5600-glibc
+.power8-glibc
+.power8le-glibc
+.power9-glibc
+.power9le-glibc
+.m1000-glibc
+.riscv64-glibc
+.rk328x-glibc
+.rk33xx-glibc
+.rk339x-glibc
+.s8xx-glibc
+.s9xx-glibc
+.x86_64-glibc
+
+# Hidden files (each file)
+.makefile
+.dist
+.rootfs
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+.requires
+.requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Descriptions
+*.dsc
+*.txt
+
+# Default linux config files
+*.defconfig
+
+# backup copies
+*~