# $Csoft: cc.pm,v 1.21 2004/01/25 04:03:15 vedge Exp $ # vim:ts=4 # # Copyright (c) 2002, 2003, 2004 CubeSoft Communications # # 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 compiler. print << 'EOF'; if [ "$CC" = "" ]; then for i in `echo $PATH |sed 's/:/ /g'`; do if [ -x "${i}/cc" ]; then CC="${i}/cc" elif [ -x "${i}/gcc" ]; then CC="${i}/gcc" fi done if [ "$CC" = "" ]; then echo "Could not find a C compiler, try setting CC." echo "CC is unset and cc/gcc is not in PATH." >> config.log exit 1 fi fi cat << 'EOT' > cc-test.c int main(int argc, char *argv[]) { return (0); } EOT $CC -o cc-test cc-test.c 2>>config.log if [ $? != 0 ]; then echo "no" echo "The test C program failed to compile." rm -f cc-test cc-test.c exit 1 fi echo "yes" rm -f cc-test cc-test.c TEST_CFLAGS="" EOF MkPrintN('checking for compiler warnings...'); MkCompileC('HAVE_CC_WARNINGS', '-Wall -Werror', '', << 'EOF'); int main(int argc, char *argv[]) { return (0); } EOF MkIf('"${HAVE_CC_WARNINGS}" = "yes"'); MkDefine('TEST_CFLAGS', '-Wall -Werror'); MkEndif; # 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; f = 0; d = 0; 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 __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 __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 __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 # 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; ld = 0; return (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 = 0.0; unsigned long long ull = 0.0; ll = 1.0; ull = 1.0; return (0); } 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 print << 'EOF'; if [ "${compile}" = "ok" ]; then if [ "${with_cygwin}" != "yes" ]; then CFLAGS="$CFLAGS -mno-cygwin" echo "CFLAGS=$CFLAGS" >> Makefile.config fi fi EOF } sub Emul { my ($os, $osrel, $machine) = @_; MkDefine('HAVE_IEEE754', 'yes'); MkSaveDefine('HAVE_IEEE754'); MkSaveUndef('HAVE_BOUNDED_ATTRIBUTE'); MkSaveUndef('HAVE_FORMAT_ATTRIBUTE'); MkSaveUndef('HAVE_NONNULL_ATTRIBUTE'); MkSaveUndef('HAVE_ALIGNED_ATTRIBUTE'); MkSaveUndef('HAVE_PACKED_ATTRIBUTE'); MkSaveUndef('HAVE_LONG_DOUBLE'); MkSaveUndef('HAVE_LONG_LONG'); MkSaveUndef('HAVE_CYGWIN'); return (1); } BEGIN { $TESTS{'cc'} = \&Test; $EMUL{'cc'} = \&Emul; $DESCR{'cc'} = 'a usable C compiler'; } ;1