diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2011-12-09 23:15:44 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2011-12-09 23:15:44 -0800 |
commit | 31231effb488243954814b2e34c2b7c846fb3cac (patch) | |
tree | 72add1bc501919f295ccb5b31b215f6fadae281c /configure | |
parent | e7dd59eeef4bf553d0592393284985fc7ee57299 (diff) | |
download | txr-31231effb488243954814b2e34c2b7c846fb3cac.tar.gz txr-31231effb488243954814b2e34c2b7c846fb3cac.tar.bz2 txr-31231effb488243954814b2e34c2b7c846fb3cac.zip |
Build and pass test suite on Cygwin.
* configure (longlong, ulonglong, superlong, usuperlong): Initialize
these variables so that if the detection tests fail, the script
does not access unbound variables.
Avoid adding junk like .bss.* into config.h.
* mpi-patches/config-types: Fixed wrong use of nonexistent
SIZEOF_LONG_T.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -603,6 +603,8 @@ printf "okay\n" # printf "Checking what C type we have for integers wider than \"long\" ... " +longlong= + for try_type in int64 __int64 "long long" ; do cat > conftest.c <<! $try_type value; @@ -624,6 +626,8 @@ fi printf "Checking what C type we have for unsigned integers wider than \"long\" ... " +ulonglong= + for try_type in uint64 __uint64 "unsigned long long" ; do cat > conftest.c <<! $try_type value; @@ -645,6 +649,8 @@ fi printf "Checking what C type we have for integers wider than \"long long\" ... " +superlong= + for try_type in int128 int128_t __int128 __int128_t ; do cat > conftest.c <<! $try_type value; @@ -666,6 +672,8 @@ fi printf "Checking what C type we have for u. integers wider than \"long long\" ... " +usuperlong= + for try_type in uint128 uint128_t __uint128 __uint128_t ; do cat > conftest.c <<! $try_type value; @@ -727,10 +735,9 @@ char SIZEOF_SUPERLONG_T[sizeof (superlong_t)]; case "$symbol" in SIZEOF* ) eval $(printf "%s=%d\n" "$symbol" "$size") + printf "#define %s %s\n" "$symbol" "$size" >> config.h ;; esac - # retain all useful information! - printf "#define %s %s\n" "$symbol" "$size" >> config.h done < conftest.syms rm -f conftest.syms conftest.o |