summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/autodist.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2014-07-06 17:17:41 +0900
committerDavid Cournapeau <cournape@gmail.com>2014-07-06 17:17:41 +0900
commit4769fe79bb5c2d4649fa2845009a0ceae94524c2 (patch)
treeba1231d72d55aaec332b51da3e996c0364bdccd4 /numpy/distutils/command/autodist.py
parent66c792b0e2c3ba68e844e92770f312074ed9bc4a (diff)
downloadnumpy-4769fe79bb5c2d4649fa2845009a0ceae94524c2.tar.gz
FEAT: add check_gcc_function_attribute check.
Diffstat (limited to 'numpy/distutils/command/autodist.py')
-rw-r--r--numpy/distutils/command/autodist.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/numpy/distutils/command/autodist.py b/numpy/distutils/command/autodist.py
index 1b9b1dd57..5602f3857 100644
--- a/numpy/distutils/command/autodist.py
+++ b/numpy/distutils/command/autodist.py
@@ -41,3 +41,20 @@ main()
}
"""
return cmd.try_compile(body, None, None)
+
+
+def check_gcc_function_attribute(cmd, attribute, name):
+ """Return True if the given function attribute is supported."""
+ cmd._check_compiler()
+ body = """
+int %s %s(void*);
+
+int
+main()
+{
+}
+""" % (attribute, name)
+ ret, output = cmd.try_output_compile(body, None, None)
+ if not ret or len(output) > 0:
+ return False
+ return True