summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/fp_ld_supports_response_files.m419
1 files changed, 19 insertions, 0 deletions
diff --git a/m4/fp_ld_supports_response_files.m4 b/m4/fp_ld_supports_response_files.m4
new file mode 100644
index 0000000000..5596169dcb
--- /dev/null
+++ b/m4/fp_ld_supports_response_files.m4
@@ -0,0 +1,19 @@
+# FP_LD_SUPPORTS_RESPONSE_FILES
+# --------------------
+# See if whether we are using a version of ld64 on darwin platforms which
+# supports response files.
+AC_DEFUN([FP_LD_SUPPORTS_RESPONSE_FILES], [
+ AC_MSG_CHECKING([whether $LD supports response files])
+ echo 'int main(void) {return 0;}' > conftest.c
+ $CC -c -o conftest.o conftest.c > /dev/null 2>&1
+ if $LD @<(printf '%q\n' -o conftest conftest.o) > /dev/null 2>&1
+ then
+ LdSupportsResponseFiles=YES
+ AC_MSG_RESULT([yes])
+ else
+ LdSupportsResponseFiles=NO
+ AC_MSG_RESULT([no])
+ fi
+ rm -f conftest.c conftest
+ AC_SUBST(LdSupportsResponseFiles)
+])