File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ DEVFLAGS = -O0 -g3 -DDEBUG -Wall
7
7
OS := $(shell uname -s | tr "[:upper:]" "[:lower:]")
8
8
9
9
# Win-64
10
- ifeq (msys_nt-10.0,$(OS ) )
10
+ ifeq (msys_nt-10.0-18363 ,$(OS ) )
11
11
CC =gcc -DWIN32=1
12
12
PRODFLAGS += -D_FILE_OFFSET_BITS=64
13
13
LDFLAGS = -lws2_32 -static -lpthread
Original file line number Diff line number Diff line change @@ -1109,9 +1109,15 @@ Z I testsBook()
1109
1109
TC (" abcd" , 7 $ `abcd )
1110
1110
TC (" 2.35" , 7.2 $ 2.345 )
1111
1111
TC (" 714.00" , 7.2 $ 714 )
1112
+ #ifndef WIN32
1112
1113
TC ("1.2e-34" , $ 1.2e-34 )
1113
1114
TC ("2.35e+00 " , -9.2 $ 2.345 )
1114
1115
TC ("7.14e+02 " , -9.2 $ 714 )
1116
+ #else
1117
+ TC ("1.2e-034" , $ 1.2e-34 )
1118
+ TC ("2.35e+000" , $ - 9.2 $ 2.345 )
1119
+ TC ("7.14e+002" , $ - 9.2 $ 714 )
1120
+ #endif
1115
1121
TC (27 , 0 $ "27" )
1116
1122
TC (3.4 , 0.0 $ "3.4" )
1117
1123
TC (27.0 , 0.0 $ "27" )
You can’t perform that action at this time.
0 commit comments