diff options
author | fanquake <fanquake@gmail.com> | 2019-12-17 12:03:47 -0500 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2019-12-17 12:16:19 -0500 |
commit | ab4e6ad7629430d02d101417e010228c1099f0ae (patch) | |
tree | 20f5a423e94ed173be3536eedfb175a4cf59ed39 /configure.ac | |
parent | e6acd9f72c61bf535d9413854b1434ec40633ca0 (diff) | |
parent | abc147de95fb294a2c0a3105695e708517010322 (diff) |
Merge #17756: build: remove WINDOWS_BITS from build system
abc147de95fb294a2c0a3105695e708517010322 build: remove WINDOWS_BITS from build system (fanquake)
Pull request description:
We no longer build/ship 32 bit windows executables.
ACKs for top commit:
laanwj:
LGTM ACK abc147de95fb294a2c0a3105695e708517010322
Tree-SHA512: 7101393cddb7e578740e4c79532dac981eb963630ce63c28dfebf0f5ecde266c1836ac0efd1fd82e6010a6151755ad2cc2b09bc2f67edd7c0c77060ac046a9cd
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index e7d14202a7..b8cb4f2812 100644 --- a/configure.ac +++ b/configure.ac @@ -525,12 +525,6 @@ case $host in if test "x$CXXFLAGS_overridden" = "xno"; then CXXFLAGS="$CXXFLAGS -w" fi - case $host in - i?86-*) WINDOWS_BITS=32 ;; - x86_64-*) WINDOWS_BITS=64 ;; - *) AC_MSG_ERROR("Could not determine win32/win64 for installer") ;; - esac - AC_SUBST(WINDOWS_BITS) dnl libtool insists upon adding -nostdlib and a list of objects/libs to link against. dnl That breaks our ability to build dll's with static libgcc/libstdc++/libssp. Override |