aboutsummaryrefslogtreecommitdiff
path: root/build/Win32-SSE2-MinGW/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'build/Win32-SSE2-MinGW/Makefile')
-rw-r--r--build/Win32-SSE2-MinGW/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/Win32-SSE2-MinGW/Makefile b/build/Win32-SSE2-MinGW/Makefile
index 9af2d80..cf02838 100644
--- a/build/Win32-SSE2-MinGW/Makefile
+++ b/build/Win32-SSE2-MinGW/Makefile
@@ -1,7 +1,7 @@
#=============================================================================
#
-# This Makefile is part of TestFloat, Release 3c, a package of programs for
+# This Makefile is part of TestFloat, Release 3d, a package of programs for
# testing the correctness of floating-point arithmetic complying with the IEEE
# Standard for Floating-Point, by John R. Hauser.
#
@@ -55,10 +55,10 @@ DELETE = rm -f
C_INCLUDES = \
-I. -I$(SUBJ_SOURCE_DIR) -I$(SOURCE_DIR) -I$(SOFTFLOAT_INCLUDE_DIR)
COMPILE_C = \
- gcc -c -Werror-implicit-function-declaration -msse2 -mfpmath=sse \
+ gcc -std=c99 -c -Werror-implicit-function-declaration -msse2 -mfpmath=sse \
$(TESTFLOAT_OPTS) $(C_INCLUDES) -O2 -o $@
COMPILE_SLOWFLOAT_C = \
- gcc -c -Werror-implicit-function-declaration $(TESTFLOAT_OPTS) \
+ gcc -std=c99 -c -Werror-implicit-function-declaration $(TESTFLOAT_OPTS) \
$(C_INCLUDES) -O3 -o $@
MAKELIB = ar crs $@
LINK = gcc -o $@