# vim:ts=4 # # Copyright (c) 2002-2010 Hypertriton, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR # ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL # DAMAGES (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE # USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. sub Test { # Look for a C compiler. # XXX duplicated code between cc/cxx # print << 'EOF'; if [ "$CC" = "" ]; then for i in `echo $PATH |sed 's/:/ /g'`; do if [ -x "${i}/cc" ]; then if [ -f "${i}/cc" ]; then CC="${i}/cc" break fi elif [ -x "${i}/gcc" ]; then if [ -f "${i}/gcc" ]; then CC="${i}/gcc" break fi fi done if [ "$CC" = "" ]; then echo "*" echo "* Unable to find a standard C compiler in PATH. You may need" echo "* to set the CC environment variable." echo "*" echo "Unable to find a C compiler in PATH." >> config.log HAVE_CC="no" echo "no" else HAVE_CC="yes" echo "yes, ${CC}" echo "yes, ${CC}" >> config.log fi else HAVE_CC="yes" echo "using ${CC}" fi if [ "${HAVE_CC}" = "yes" ]; then $ECHO_N "checking whether the C compiler works..." $ECHO_N "checking whether the C compiler works..." >> config.log cat << 'EOT' > conftest.c int main(int argc, char *argv[]) { return (0); } EOT $CC -o conftest conftest.c 2>>config.log if [ $? != 0 ]; then echo "no, the test failed to compile" echo "no, the test failed to compile" >> config.log HAVE_CC="no" else echo "yes" echo "yes" >> config.log HAVE_CC="yes" fi if [ "${EXECSUFFIX}" = "" ]; then EXECSUFFIX="" for OUTFILE in conftest.exe conftest conftest.*; do if [ -f $OUTFILE ]; then case $OUTFILE in *.c | *.o | *.obj | *.bb | *.bbg | *.d | *.pdb | *.tds | *.xcoff | *.dSYM | *.xSYM ) ;; *.* ) EXECSUFFIX=`expr "$OUTFILE" : '[^.]*\(\..*\)'` break ;; * ) break ;; esac; fi done if [ "$EXECSUFFIX" != "" ]; then echo "Detected executable suffix: $EXECSUFFIX" >> config.log fi EOF MkSaveMK('EXECSUFFIX'); MkSaveDefine('EXECSUFFIX'); print << 'EOF'; fi rm -f conftest.c conftest$EXECSUFFIX TEST_CFLAGS="" fi EOF MkPrintN('checking for compiler warning options...'); MkCompileC('HAVE_CC_WARNINGS', '-Wall -Werror', '', << 'EOF'); int main(int argc, char *argv[]) { return (0); } EOF MkIfTrue('${HAVE_CC_WARNINGS}'); MkDefine('TEST_CFLAGS', '-Wall -Werror'); MkEndif; MkPrintN('checking for gcc...'); MkCompileC('HAVE_GCC', '', '', << 'EOF'); int main(int argc, char *argv[]) { #if !defined(__GNUC__) # error "Not GCC" #endif return (0); } EOF # Check for floating point support. # TODO representation MkPrintN('checking for IEEE754 floating point...'); MkCompileC('HAVE_IEEE754', '', '', << 'EOF'); int main(int argc, char *argv[]) { float f = 1.5; double d = 2.5; return (f == 1.0 || d == 1.0); } EOF MkPrintN('checking aligned attribute...'); TryCompileFlagsC('HAVE_ALIGNED_ATTRIBUTE', '-Wall -Werror', << 'EOF'); int main(int argc, char *argv[]) { struct s1 { int x,y,z; } __attribute__ ((aligned(16))); return (0); } EOF MkPrintN('checking bounded attribute...'); MkCompileC('HAVE_BOUNDED_ATTRIBUTE', '', '', << 'EOF'); void foo(char *, int) __attribute__ ((__bounded__(__string__,1,2))); void foo(char *a, int c) { } int main(int argc, char *argv[]) { char buf[32]; foo(buf, sizeof(buf)); return (0); } EOF MkPrintN('checking const attribute...'); TryCompileFlagsC('HAVE_CONST_ATTRIBUTE', '', << 'EOF'); int foo(int) __attribute__ ((const)); int foo(int x) { return (x*x); } int main(int argc, char *argv[]) { int x = foo(1); return (x); } EOF MkPrintN('checking deprecated attribute...'); TryCompileFlagsC('HAVE_DEPRECATED_ATTRIBUTE', '', << 'EOF'); void foo(void) __attribute__ ((deprecated)); void foo(void) { } int main(int argc, char *argv[]) { /* foo(); */ return (0); } EOF MkPrintN('checking format attribute...'); MkCompileC('HAVE_FORMAT_ATTRIBUTE', '', '', << 'EOF'); #include void foo1(char *, ...) __attribute__((__format__ (printf, 1, 2))); void foo2(char *, ...) __attribute__((__format__ (__printf__, 1, 2))) __attribute__((__nonnull__ (1))); void foo1(char *a, ...) {} void foo2(char *a, ...) {} int main(int argc, char *argv[]) { foo1("foo %s", "bar"); foo2("foo %d", 1); return (0); } EOF MkPrintN('checking nonnull attribute...'); TryCompileFlagsC('HAVE_NONNULL_ATTRIBUTE', '-Wall -Werror', << 'EOF'); void foo(char *) __attribute__((__nonnull__ (1))); void foo(char *a) { } int main(int argc, char *argv[]) { foo("foo"); return (0); } EOF MkPrintN('checking noreturn attribute...'); TryCompileFlagsC('HAVE_NORETURN_ATTRIBUTE', '', << 'EOF'); #include #include void foo(void) __attribute__ ((noreturn)); void foo(void) { _exit(0); } int main(int argc, char *argv[]) { foo(); } EOF MkPrintN('checking packed attribute...'); TryCompileFlagsC('HAVE_PACKED_ATTRIBUTE', '-Wall -Werror', << 'EOF'); int main(int argc, char *argv[]) { struct s1 { char c; int x,y,z; } __attribute__ ((packed)); return (0); } EOF MkPrintN('checking pure attribute...'); TryCompileFlagsC('HAVE_PURE_ATTRIBUTE', '', << 'EOF'); int foo(int) __attribute__ ((pure)); int foo(int x) { return (x*x); } int main(int argc, char *argv[]) { int x = foo(1); return (x); } EOF MkPrintN('checking warn_unused_result attribute...'); TryCompileFlagsC('HAVE_WARN_UNUSED_RESULT_ATTRIBUTE', '', << 'EOF'); int foo(void) __attribute__ ((warn_unused_result)); int foo(void) { return (1); } int main(int argc, char *argv[]) { int rv = foo(); return (rv); } EOF # Check for long double type. MkPrintN('checking for long double...'); TryCompile('HAVE_LONG_DOUBLE', << 'EOF'); int main(int argc, char *argv[]) { long double ld = 0.1; return (ld == 1.0); } EOF # Check for long long type. MkPrintN('checking for long long...'); TryCompile('HAVE_LONG_LONG', << 'EOF'); int main(int argc, char *argv[]) { long long ll = -1; unsigned long long ull = 1; return (ll != -1 || ull != 1); } EOF MkPrintN('checking for cygwin environment...'); TryCompileFlagsC('HAVE_CYGWIN', '-mcygwin', << 'EOF'); #include #include #include int main(int argc, char *argv[]) { struct stat sb; DWORD rv; rv = GetFileAttributes("foo"); stat("foo", &sb); return (0); } EOF # Preserve ${CC} and ${CFLAGS} MkSaveMK('CC', 'CFLAGS'); } sub Emul { my ($os, $osrel, $machine) = @_; MkDefine('HAVE_IEEE754', 'yes'); MkSaveDefine('HAVE_IEEE754'); MkSaveUndef('HAVE_ALIGNED_ATTRIBUTE'); MkSaveUndef('HAVE_BOUNDED_ATTRIBUTE'); MkSaveUndef('HAVE_CONST_ATTRIBUTE'); MkSaveUndef('HAVE_DEPRECATED_ATTRIBUTE'); MkSaveUndef('HAVE_FORMAT_ATTRIBUTE'); MkSaveUndef('HAVE_NONNULL_ATTRIBUTE'); MkSaveUndef('HAVE_NORETURN_ATTRIBUTE'); MkSaveUndef('HAVE_PACKED_ATTRIBUTE'); MkSaveUndef('HAVE_PURE_ATTRIBUTE'); MkSaveUndef('HAVE_WARN_UNUSED_RESULT_ATTRIBUTE'); MkSaveUndef('HAVE_LONG_DOUBLE'); MkSaveUndef('HAVE_LONG_LONG'); MkSaveUndef('HAVE_CYGWIN'); return (1); } BEGIN { $TESTS{'cc'} = \&Test; $EMUL{'cc'} = \&Emul; $DESCR{'cc'} = 'a C compiler'; } ;1