mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
6070365bf2
Some compilers on some platforms by default #define some of the values we're using in the source we use in get_compiler_info(). Namely, mingw-gcc #defines WINNT by default, and the WINNT in the source is then replaced by 1, breaking the check. The C preprocessor, fortunately, doesn't expand macros inside C strings. So instead of `%KERNEL WINNT`, we output `%KERNEL "WINNT"`, and strip out the double quotes. For good measure, we do this for all values in the source used in get_compiler_info(). --HG-- extra : rebase_source : dd4cc2b8c3bf0cb508b09598706b74ccc12162be |
||
---|---|---|
.. | ||
android-ndk.configure | ||
checks.configure | ||
compile-checks.configure | ||
compilers-util.configure | ||
ffi.configure | ||
headers.configure | ||
init.configure | ||
java.configure | ||
keyfiles.configure | ||
memory.configure | ||
old.configure | ||
pkg.configure | ||
rust.configure | ||
toolchain.configure | ||
util.configure | ||
warnings.configure | ||
windows.configure |