summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2021-01-09 10:06:15 (GMT)
committerTony Theodore <tonyt@logyst.com>2021-01-09 10:06:15 (GMT)
commitc52ebc3b5b3ad636a25641cb9a57bb7038ed22fb (patch)
tree266832d18079afbca12e836ed9e6959dcdfecc2f /src
parentd9214ec551d66a7f277004b4b99cfdb486fc23b2 (diff)
downloadmxe-c52ebc3b5b3ad636a25641cb9a57bb7038ed22fb.zip
mxe-c52ebc3b5b3ad636a25641cb9a57bb7038ed22fb.tar.gz
mxe-c52ebc3b5b3ad636a25641cb9a57bb7038ed22fb.tar.bz2
gdb: fix shared build on darwin
tries to create *.so libs, disable shared since *.exe are always static
Diffstat (limited to 'src')
-rw-r--r--src/gdb.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gdb.mk b/src/gdb.mk
index f4818c9..68663ed 100644
--- a/src/gdb.mk
+++ b/src/gdb.mk
@@ -20,6 +20,8 @@ endef
define $(PKG)_BUILD
cd '$(BUILD_DIR)' && '$(SOURCE_DIR)/configure' \
$(MXE_CONFIGURE_OPTS) \
+ --enable-static \
+ --disable-shared \
--with-system-readline \
--disable-gdbtk \
--disable-tui \