aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers.py
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2016-12-06 23:59:49 +0530
committerJussi Pakkanen <jpakkane@gmail.com>2016-12-10 23:18:17 +0200
commitbe04aa2a0b00d123aae78da2448a216f7e3201b9 (patch)
tree3bd6fa65412250ba4daa201a5635f83721a4eb57 /mesonbuild/compilers.py
parentc75b5886da31c97e991a4458fc9bcb41ed149ecd (diff)
downloadmeson-be04aa2a0b00d123aae78da2448a216f7e3201b9.zip
meson-be04aa2a0b00d123aae78da2448a216f7e3201b9.tar.gz
meson-be04aa2a0b00d123aae78da2448a216f7e3201b9.tar.bz2
has_function: Fix checking for builtins with includes
We were checking for builtins explicitly like this because the ordinary checks don't work for builtins at all. We do exactly the same check as Autoconf and it doesn't work with Autoconf either (Autoconf is broken!) So now we check for it in two ways: if there's no #include in prefix, we check if `__builtin_symbol` exists (has_function allows checking for functions without providing includes). If there's a #include, we check if `symbol` exists. The old method was causing problems with some buggy toolchains such as MSYS2 which define some builtins in the C library but don't expose them via headers which meant that `__builtin_symbol` would be found even though `symbol` is not available. Doing this allows people to always get the correct answer as long as they specify the includes that are required to find a function while also not forcing people to always specify includes to find a function which is cumbersome. Closes #1083
Diffstat (limited to 'mesonbuild/compilers.py')
-rw-r--r--mesonbuild/compilers.py22
1 files changed, 17 insertions, 5 deletions
diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py
index 0f6250f..7b9adde 100644
--- a/mesonbuild/compilers.py
+++ b/mesonbuild/compilers.py
@@ -1020,11 +1020,23 @@ int main(int argc, char **argv) {
if self.links(templ.format(prefix, funcname), env, extra_args, dependencies):
return True
# Some functions like alloca() are defined as compiler built-ins which
- # are inlined by the compiler, so test for that instead. Built-ins are
- # special functions that ignore all includes and defines, so we just
- # directly try to link via main().
- return self.links('int main() {{ {0}; }}'.format('__builtin_' + funcname),
- env, extra_args, dependencies)
+ # are inlined by the compiler, so look for __builtin_symbol in the libc
+ # if there's no #include-s in prefix which would've #define-d the
+ # symbol correctly. If there is a #include, just check for the symbol
+ # directly. This is needed because the above #undef fancy footwork
+ # doesn't work for builtins.
+ # This fixes instances such as #1083 where MSYS2 defines
+ # __builtin_posix_memalign in the C library but doesn't define
+ # posix_memalign in the headers to point to that builtin which results
+ # in an invalid detection.
+ if '#include' not in prefix:
+ code = 'int main() {{ {0}; }}'
+ return self.links(code.format('__builtin_' + funcname), env,
+ extra_args, dependencies)
+ else:
+ code = '{0}\n' + stubs_fail + '\nint main() {{ {1}; }}'
+ return self.links(code.format(prefix, funcname), env, extra_args,
+ dependencies)
def has_members(self, typename, membernames, prefix, env, extra_args=None, dependencies=None):
if extra_args is None: