Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/minhook.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2015-08-27 18:02:34 +0300
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2015-08-27 18:02:34 +0300
commita9493a9eff54f802f1d6010ada4345ff8739b095 (patch)
tree176d260dcf3c84f97ab97a4461c7e2ef1787ee8b
parent097ac627edb516fd148f1574f37e7fb73d5e36f7 (diff)
Revert "Fix GCC options to correct the usage of bitfields."
This reverts commit 72007e1d9cd6c7c5b17b15f90d3cdc03d69430be.
-rw-r--r--build/MinGW/Makefile2
-rw-r--r--build/MinGW/make.bat2
2 files changed, 2 insertions, 2 deletions
diff --git a/build/MinGW/Makefile b/build/MinGW/Makefile
index 8d6430f..b0f6e96 100644
--- a/build/MinGW/Makefile
+++ b/build/MinGW/Makefile
@@ -7,7 +7,7 @@ SRCS:=$(wildcard src/*.c src/HDE/*.c)
OBJS:=$(SRCS:%.c=%.o)
DEPS:=$(SRCS:%.c=%.d)
INCS:=-Isrc -Iinclude
-CFLAGS:=-masm=intel -Wall -Werror -std=c11 -funsigned-bitfields
+CFLAGS:=-masm=intel -Wall -Werror -std=c11
LDFLAGS:=-Wl,-enable-stdcall-fixup -s -static-libgcc
all: MinHook.dll libMinHook.dll.a libMinHook.a
diff --git a/build/MinGW/make.bat b/build/MinGW/make.bat
index ff56a75..7671878 100644
--- a/build/MinGW/make.bat
+++ b/build/MinGW/make.bat
@@ -1 +1 @@
-windres -i ../../dll_resources/MinHook.rc -o MinHook_rc.o && dllwrap --driver-name g++ -o MinHook.dll -masm=intel --def ../../dll_resources/MinHook.def -Wl,-enable-stdcall-fixup -Wall MinHook_rc.o ../../src/*.c ../../src/HDE/*.c -I../../include -I../../src -Werror -std=c++11 -funsigned-bitfields -s -static-libgcc -static-libstdc++|| pause \ No newline at end of file
+windres -i ../../dll_resources/MinHook.rc -o MinHook_rc.o && dllwrap --driver-name g++ -o MinHook.dll -masm=intel --def ../../dll_resources/MinHook.def -Wl,-enable-stdcall-fixup -Wall MinHook_rc.o ../../src/*.c ../../src/HDE/*.c -I../../include -I../../src -Werror -std=c++11 -s -static-libgcc -static-libstdc++|| pause \ No newline at end of file