index
:
mingw-w64-dpp.git
"Mingw64 Driver Plus Plus": C++, DDK and (EA)STL made easy!
log msg
author
committer
range
main
release-1.0
release-1.1
release-1.2
release-1.3
tmp
summary
refs
log
tree
commit
diff
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Toni Uhlig <matzeton@googlemail.com>
2021-08-03 16:56:24 +0200
committer
Toni Uhlig <matzeton@googlemail.com>
2021-08-03 16:56:24 +0200
commit
a7cae76c5ef40f52a1dd6895373e8c93dffaadf0
(
patch
)
tree
9f260269a05490482afdf4a0d3a6284fb855511c
parent
31486d98f42d6e8a9e6b07d4576c4e781c25bee7
(
diff
)
Ignore strict aliasing warnings.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat
-rw-r--r--
Makefile.inc
2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc
index 6604ce5..9d59196 100644
--- a/
Makefile.inc
+++ b/
Makefile.inc
@@ -18,7 +18,7 @@ CMAKE = cmake
CC = $(LOCAL_MINGW64_CC)
CXX = $(dir $(CC))x86_64-w64-mingw32-g++
DDK_INCLUDE_DIR = $(dir $(CC))../x86_64-w64-mingw32/include/ddk
-CFLAGS := -Wall -Wextra -Wno-sign-compare \
+CFLAGS := -Wall -Wextra -Wno-sign-compare -Wno-strict-aliasing \
-m64 -fPIC -fvisibility=hidden \
-ffunction-sections -fdata-sections -fno-builtin -ffreestanding \
-I$(DPP_ROOT)/CRT -I$(DDK_INCLUDE_DIR) \