summaryrefslogtreecommitdiff
path: root/toolchain/Makefile
AgeCommit message (Collapse)Author
2017-03-17llvm: update to 4.0.0, allow to compile musl with itWaldemar Brodkorb
2017-01-14toolchain does not need libelfWaldemar Brodkorb
2016-08-30gdb-host: disable by default to fasten toolchain buildingWaldemar Brodkorb
2016-07-26add bare-metal toolchain support for cr16 architectureWaldemar Brodkorb
2016-06-30add support for nds32 architectureWaldemar Brodkorb
Verified on a FPGA board sponsored by Andes Technology. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
2016-05-12add support to play with LLVM/clangWaldemar Brodkorb
2016-04-02add support for epiphany bare-metal toolchain buildingWaldemar Brodkorb
2016-02-16add nds32 bare-metal toolchain supportWaldemar Brodkorb
2015-12-28v850: add basic newlib toolchain supportWaldemar Brodkorb
2015-12-13rework prereq checkWaldemar Brodkorb
The new prereq check is completely implemented in POSIX shell in scripts/prereq.sh. It combines the old features from Makefile, scan-tools.sh, scan-pkgs.sh, reloc.sh and some wrappers for tools. The big benefit is to have all portability stuff in one place. Furthermore we can compile GNU make and bash on the fly, for systems lacking the required tools. All changes on the host are detected on the fly, no make prereq required anymore. The build process is separated in following three phases: 1. small wrapper Makefile is used for BSD make or GNU make 2. prereq.sh is called, doing all checking, calling Makefile.adk 3. old logic in Makefile.adk or mk/build.mk is used Tested successfully on Linux, MacOS X, Cygwin, FreeBSD, OpenBSD and NetBSD. An old depmaker bug was fixed, only optional host tools are compiled. For example, even when a host provides xz, a local xz was compiled in the past, because other packages had a build dependency on it. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
2015-12-11Revert "rework prereq check"Waldemar Brodkorb
This reverts commit fba2ff31928b18364c1934654169806f5c800e23.
2015-12-11rework prereq checkwbx
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
2015-12-04cleanup binfmt flat handling, reduce duplicatesWaldemar Brodkorb
2015-12-03toolchain: add newlib supportWaldemar Brodkorb
OpenADK can now build bare-metal toolchains. Tested for ARM/MIPS. No runtime testing, yet.
2015-12-02simplify toolchain buildingWaldemar Brodkorb
Buildroot uses the two-stage mechanism since a while. This reduces the build time a lot. Instead of three stages, we just use the two-stage build. The benefit is that the C library do not need to be rebuild and one gcc compile is obsolete. Tested with embedded-test.sh. There is one unresolved problem, tile toolchain building is broken.
2015-10-11remove already disabled uClibc support, fix wrong PKG_LIBC_DEPENDSWaldemar Brodkorb
2015-07-13add basic toolchain support for or1k arch with musl libcWaldemar Brodkorb
2015-07-09add support for metag architectureWaldemar Brodkorb
2015-03-10only arc is disabled for nowWaldemar Brodkorb
2015-02-28toolchain: add cross prelinking tool from yoctoproject and hook it into ↵Phil Sutter
build system
2015-02-14add support for old avr32 gdbWaldemar Brodkorb
2014-12-19use the new concept of appliancesWaldemar Brodkorb
- Sync with Kernel upstream Kconfig - use new feature visible - add a patch for select on choices https://lkml.org/lkml/2011/2/17/379 - rename ADK_LINUX -> ADK_TARGET_ARCH - remove package collection feature - add appliance feature to define a appliance more complete
2014-09-09add toolchain support for avr32Waldemar Brodkorb
2014-09-05gdb for arc not yet upstream, disable at the momentWaldemar Brodkorb
2014-08-15move to toolchain dirWaldemar Brodkorb
2014-07-06allow static building of toolchainWaldemar Brodkorb
2014-07-05add support for uClibc-ng in parallel to uClibc.Waldemar Brodkorb
This helps to find any regressions made in uClibc-ng.
2014-06-21s/TOPDIR/ADK_TOPDIR/Waldemar Brodkorb
to avoid namespace collisions in some packages, rename TOPDIR. Sorry you need to make cleandir && make prereq && make
2014-06-16optimize environment variables, reduce duplicate stuffWaldemar Brodkorb
2014-05-23always build gdb for hostWaldemar Brodkorb
2014-04-30use CLIB instead of LIBC to avoid clashes with uClibc buildsystemWaldemar Brodkorb
2014-04-06use lowercase directory nameWaldemar Brodkorb
2014-03-17add TOOLCHAIN_DIR supportWaldemar Brodkorb
establish an extra dir for toolchain. Better for preparing toolchain for other projetcs without host tools only used by openadk. Use /usr prefix. No symlink workarounds needed anymore.
2014-03-02resolve merge conflictWaldemar Brodkorb
2014-03-02remove REAL_GNU_TARGET_NAME, it is a relict from buildroot days, I do not ↵Waldemar Brodkorb
know why this is required. the names are not unique between arch with different abi
2014-03-02goodbye eglibc, see my blog http://blog.waldemar-brodkorb.de/Waldemar Brodkorb
2014-02-04unbreak toolchain buildingWaldemar Brodkorb
2013-08-12update glibc to latest upstreamWaldemar Brodkorb
2013-08-11preliminary musl supportWaldemar Brodkorb
2012-10-14install gdb when chosenWaldemar Brodkorb
2012-10-10fix 32 Bit multilib buildsWaldemar Brodkorb
2011-01-22activate GCC cflags check, cleanup FLAGS stuff in OpenADK.Waldemar Brodkorb
* remove TCFLAGS/TLDFLAGS/TCPPFLAGS and only use TARGET_CFLAGS/TARGET_LDFLAGS/TARGET_CPPFLAGS, ... * activate GCC_HONOUR_COPTS and fix all packages to honour CFLAGS * use CC_FOR_BUILD, CFLAGS_FOR_BUILD, ... for all build compilation, remove HOST* variants * introduce KERNEL_MODULE_FLAGS for external kernel modules * mark rpm package as broken, mark syslinux for native builds only, mark libhugetlb for eglibc/glibc only usage
2011-01-10add LTO support to toolchain settings. Cleanup SYSROOT mess.Waldemar Brodkorb
- just use on sysroot directory for toolchain. - add missing patches from previos commit. (rpath/cflags cleanup)
2011-01-08fix make clean target ruleWaldemar Brodkorb
correct the wrong path and remove the correct files on clean. Finetune more directory creation rules.
2011-01-07add toolchain settings menu pointWaldemar Brodkorb
- gdb compilation can be disabled - gcc languages (c++/java) can be enabled/disabled - gcc stack smashing protection can be enabled/disabled
2010-12-30rework architecture / embedded systems conceptWaldemar Brodkorb
Make configuration of new targets cheap. Just add a new file in target/arch/sys-enabled/foo. See other files for syntax. While doing runtime tests with the new infrastructure I've updated a lot of other stuff: - gcc 4.5.2 - uClibc 0.9.32-rc1 (NPTL) - strongswan, php, miredo, parted, util-linux-ng, e2fsprogs I promise, this is the last big fat commit this year ;)
2010-07-05add menu based configuration of a passwordWaldemar Brodkorb
2010-06-26with gcc 4.5 we will need mpcWaldemar Brodkorb
2010-02-25fix merge problem, enable e1000 driver correctlyWaldemar Brodkorb
2010-02-25resolve merge conflictWaldemar Brodkorb