diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-08-15 09:33:03 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2014-08-15 09:33:03 +0200 |
commit | 5cf51a3d46ee3cb40f4bf6b97e8a03db9398f083 (patch) | |
tree | 88e455bbcc46028c1883ee8c63944fe9551043a0 | |
parent | 39b264ed67245a5b680312f965e9d4483a98c5bd (diff) |
fix build on Darwin, need to find a way to get mkimage on Darwin later
-rw-r--r-- | mk/build.mk | 6 | ||||
-rw-r--r-- | target/config/Config.in.tools | 1 |
2 files changed, 4 insertions, 3 deletions
diff --git a/mk/build.mk b/mk/build.mk index a37ea0966..24dc4ccd2 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -554,13 +554,13 @@ buildall: $(GMAKE) VERBOSE=1 all 2>&1 | tee firmware/buildall.log $(ADK_TOPDIR)/adk/tools/pkgmaker: $(ADK_TOPDIR)/adk/tools/pkgmaker.c $(ADK_TOPDIR)/adk/tools/sortfile.c $(ADK_TOPDIR)/adk/tools/strmap.c - @$(HOST_CC) -O0 -g0 -static-libgcc -o $@ adk/tools/pkgmaker.c adk/tools/sortfile.c adk/tools/strmap.c + @$(HOST_CC) -O0 -g0 -o $@ adk/tools/pkgmaker.c adk/tools/sortfile.c adk/tools/strmap.c $(ADK_TOPDIR)/adk/tools/pkgrebuild: $(ADK_TOPDIR)/adk/tools/pkgrebuild.c $(ADK_TOPDIR)/adk/tools/strmap.c - @$(HOST_CC) -O0 -g0 -static-libgcc -o $@ adk/tools/pkgrebuild.c adk/tools/strmap.c + @$(HOST_CC) -O0 -g0 -o $@ adk/tools/pkgrebuild.c adk/tools/strmap.c $(ADK_TOPDIR)/adk/tools/depmaker: $(ADK_TOPDIR)/adk/tools/depmaker.c - @$(HOST_CC) -O0 -g0 -static-libgcc -o $@ $(ADK_TOPDIR)/adk/tools/depmaker.c + @$(HOST_CC) -O0 -g0 -o $@ $(ADK_TOPDIR)/adk/tools/depmaker.c menu .menu: $(wildcard package/*/Makefile) $(wildcard target/*/systems) $(wildcard target/*/systems/*) $(ADK_TOPDIR)/adk/tools/pkgmaker $(ADK_TOPDIR)/adk/tools/pkgrebuild $(wildcard target/*/collections) @echo "Generating menu structure ..." diff --git a/target/config/Config.in.tools b/target/config/Config.in.tools index e1f65e5d2..f255e0a5f 100644 --- a/target/config/Config.in.tools +++ b/target/config/Config.in.tools @@ -33,6 +33,7 @@ config ADK_HOST_BUILD_LIBTOOL config ADK_HOST_BUILD_U_BOOT boolean + default n if ADK_HOST_DARWIN default y # always required, but can be provided by host |