diff options
-rw-r--r-- | TODO | 5 | ||||
-rw-r--r-- | toolchain/gcc/Makefile | 2 | ||||
-rw-r--r-- | toolchain/uClibc/Makefile | 2 |
3 files changed, 4 insertions, 5 deletions
@@ -1,12 +1,11 @@ +- rework startup, maybe use init.c, start gettys after bootup ready +- more output for initscripts on bootup - port uuterm - move tools to package host infrastructure, resolve dependency handling for host tools - finish miniconfig + cleanup - qemu-sh serial - choice qemu with graphic - x32 musl -- socat openssl flavour + update -- hash-style=gnu for non-mips and non-musl -- add misp64 n32/n64 toolchains - hash-style=gnu for non-mips and non-musl - add fb full screen logo - port opkg with gpg signing diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 138e3a0d0..f32b1836d 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -18,6 +18,7 @@ GCC_CONFOPTS= --prefix=$(STAGING_HOST_DIR) \ --with-libelf=$(STAGING_HOST_DIR) \ --disable-__cxa_atexit \ --with-gnu-ld \ + --with-gnu-as \ --disable-libsanitizer \ --disable-libitm \ --disable-libmudflap \ @@ -176,6 +177,7 @@ $(GCC_BUILD_DIR_FINAL)/.configured: $(WRKBUILD)/configure \ ${GCC_CONFOPTS} \ --enable-languages=$(LANGUAGES) \ + --with-build-sysroot='$${prefix}/${STAGING_HOST2TARGET}' \ --with-sysroot='$${prefix}/${STAGING_HOST2TARGET}' \ --enable-shared touch $@ diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index b935a2f53..e5f1d8cac 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -114,8 +114,6 @@ endif RUNTIME_PREFIX=/ \ CPU_CFLAGS="$(TARGET_CFLAGS)" \ all install_runtime - rm -rf $(STAGING_TARGET_DIR)/lib/libc.so - ln -s libc.so.0 $(STAGING_TARGET_DIR)/lib/libc.so # cleanup toolchain -find $(STAGING_TARGET_DIR) $(STAGING_HOST_DIR) -name \*.la -delete ifeq ($(ADK_TOOLCHAIN),y) |