diff options
author | Tony Theodore <tonyt@logyst.com> | 2021-01-09 10:06:15 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2021-01-09 10:06:15 (GMT) |
commit | c52ebc3b5b3ad636a25641cb9a57bb7038ed22fb (patch) | |
tree | 266832d18079afbca12e836ed9e6959dcdfecc2f /src | |
parent | d9214ec551d66a7f277004b4b99cfdb486fc23b2 (diff) | |
download | mxe-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.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 \ |