fix for winblows
This commit is contained in:
7
Makefile
7
Makefile
@@ -24,7 +24,12 @@ $(BINARY): $(CFILES) $(LEXER_C) $(LEXER_H)
|
|||||||
gcc -O3 -o $(BINARY) $(CFILES) $(CFLAGS) -s
|
gcc -O3 -o $(BINARY) $(CFILES) $(CFLAGS) -s
|
||||||
|
|
||||||
windows: $(CFILES) $(LEXER_C) $(LEXER_H)
|
windows: $(CFILES) $(LEXER_C) $(LEXER_H)
|
||||||
find external/xxhash external/cwalk external/libdye src -name '*.c' > sources.txt
|
(
|
||||||
|
echo -n "external/xxhash/xxhash.c "
|
||||||
|
echo -n "external/cwalk/src/cwalk.c "
|
||||||
|
echo -n "external/libdye/src/dye.c "
|
||||||
|
find src -name '*.c' -print0 | xargs -0 echo -n
|
||||||
|
) > sources.txt
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
gcc -O3 -march=native -o $(BINARY) @sources.txt $(CFLAGS)
|
gcc -O3 -march=native -o $(BINARY) @sources.txt $(CFLAGS)
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,9 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
|
#ifndef _WIN32_WINNT
|
||||||
#define _WIN32_WINNT 0x0602
|
#define _WIN32_WINNT 0x0602
|
||||||
|
#endif
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <psapi.h>
|
#include <psapi.h>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user