diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-11-12 21:50:31 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-11-12 21:50:31 -0800 |
commit | 57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac (patch) | |
tree | 9477fd0a23bbe297fd11178b7ed6cd8c3c8a268a /kconfig | |
parent | 4c9218d51dc3c6c84a8d5c488f234ed7575107c6 (diff) | |
parent | 5f3774cd656ba54200cb192fc1454c5232347b70 (diff) | |
download | crosstool-ng-57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac.tar.gz crosstool-ng-57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac.tar.bz2 crosstool-ng-57de8dcf22d5ddddee6a44f87f45f2c279fdb1ac.zip |
Merge pull request #239 from diorcety-ctng/cc-cygwin-mingw-linux
Canadian cross build = x86_64 Cygwin host = x86_64 MinGW_W64 target = x86_64 GNU/Linux
Diffstat (limited to 'kconfig')
-rwxr-xr-x[-rw-r--r--] | kconfig/Makefile | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/kconfig/Makefile b/kconfig/Makefile index b18ddc0a..27482afe 100644..100755 --- a/kconfig/Makefile +++ b/kconfig/Makefile @@ -7,7 +7,7 @@ all: conf mconf nconf # Build flags CFLAGS = -DCONFIG_=\"CT_\" -DPACKAGE="\"crosstool-NG $(VERSION)\"" -LDFLAGS = +LDFLAGS = $(INTL_LIBS) # Compiler flags to use gettext ifeq ($(gettext),) @@ -50,13 +50,6 @@ nconf_DEP = $(patsubst %.c,%.dep,$(nconf_SRC)) $(nconf_OBJ) $(nconf_DEP): CFLAGS += $(INTL_CFLAGS) -I/usr/include/ncurses nconf: LDFLAGS += -lmenu -lpanel -lncurses -# Under Cygwin, we need to auto-import some libs (which ones, exactly?) -# for mconf and nconf to lin properly. -ifeq ($(shell uname -o 2>/dev/null || echo unknown),Cygwin) -mconf: LDFLAGS += -Wl,--enable-auto-import -nconf: LDFLAGS += -Wl,--enable-auto-import -endif - # These are generated files: ALL_OBJS = $(sort $(COMMON_OBJ) $(LX_OBJ) $(conf_OBJ) $(mconf_OBJ) $(nconf_OBJ)) ALL_DEPS = $(sort $(COMMON_DEP) $(LX_DEP) $(conf_DEP) $(mconf_DEP) $(nconf_DEP)) |