Skip to content

Commit 242a71d

Browse files
committed
Correct makefile for testing
1 parent f67b735 commit 242a71d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
################################################################
22
# NOTE: Subsystem "5.01" requires MSVC <= 19.27 (VS2019 16.7.28)
33
################################################################
4-
#CC = cl.exe -nologo -J -WX -W4 -sdl -arch:IA32 -O2 -D_CRT_SECURE_NO_WARNINGS
5-
#LL = link.exe -nologo -subsystem:console,"5.01" -OUT:
4+
CC = cl.exe -nologo -J -WX -W4 -sdl -arch:IA32 -O2 -D_CRT_SECURE_NO_WARNINGS
5+
LL = link.exe -nologo -subsystem:console,"5.01" -OUT:
66

77
CFLAGS = -m32 -funsigned-char -O2 -fdiagnostics-color -Wall -Wextra \
88
-pedantic-errors -Wfatal-errors -Wshadow -Wconversion \
@@ -17,8 +17,8 @@ CFLAGS = -m32 -funsigned-char -O2 -fdiagnostics-color -Wall -Wextra \
1717
# NOTE: `nmake` is required to properly run `clang`, it seems...
1818
################################################################
1919
#CC = clang++ -std=c++17 $(CFLAGS)
20-
CC = clang -std=c89 $(CFLAGS)
21-
LL = lld-link --color-diagnostics=never -subsystem:console,"5.01" libcmt.lib -out:
20+
#CC = clang -std=c89 $(CFLAGS)
21+
#LL = lld-link --color-diagnostics=never -subsystem:console,"5.01" libcmt.lib -out:
2222

2323

2424
all : tests hd.exe

0 commit comments

Comments
 (0)