diff options
author | Björn Gustavsson <[email protected]> | 2011-11-15 16:40:49 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-11-25 10:59:38 +0100 |
commit | 448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5 (patch) | |
tree | 4e9ba8d286ef48c6d270f2f506a3779935d37f98 /erts | |
parent | fa8edf9882b0b1213018a8421f7c779be3001abc (diff) | |
download | otp-448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5.tar.gz otp-448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5.tar.bz2 otp-448cf0cfe686c5bd6c1d28c08807c6c99b4c49d5.zip |
MacOS X: Completely remove obsolete -no-cpp-precomp option
clang does not recognize the -no-cpp-precomp option and generates
a warning. -no-cpp-precomp is an obsolete Apple-specific gcc option,
which last had any effect in gcc 3.1 for Jaguar.
Since we cannot build for Jaguar anyway, the configure test added
in 8412a400e92d5cbcd is not needed.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/configure.in | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/erts/configure.in b/erts/configure.in index e3eb6034e6..1d07c74f5f 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -490,19 +490,6 @@ CFLAG_RUNTIME_LIBRARY_PATH="-Wl,-R" case $host_os in darwin*) CFLAG_RUNTIME_LIBRARY_PATH= - AC_TRY_COMPILE([],[ - #if __GNUC__ >= 4 - ; - #else - #error old or no gcc - #endif - ], - gcc_need_no_cpp_precomp=no, - gcc_need_no_cpp_precomp=yes) - - if test x$gcc_need_no_cpp_precomp = xyes; then - CFLAGS="$CFLAGS -no-cpp-precomp" - fi ;; win32) CFLAG_RUNTIME_LIBRARY_PATH= |