Merge pull request #229 from jruderman/makefile_typo

Fix typo in cxxflags
This commit is contained in:
Zeno Rogue 2021-07-12 17:03:50 +02:00 committed by GitHub
commit 5687fadb82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ ifeq (${TOOLCHAIN},clang)
CXXFLAGS_EARLY += -march=native -fPIC
CXXFLAGS_EARLY += -W -Wall -Wextra -Werror -pedantic
CXXFLAGS_EARLY += -Wno-unused-parameter -Wno-implicit-fallthrough -Wno-maybe-uninitialized -Wno-unknown-warning-option
CXXFLAGS_EARLY += -Wno-invalid-offsetof -Wno-overloaded-virtua
CXXFLAGS_EARLY += -Wno-invalid-offsetof -Wno-overloaded-virtual
endif
ifeq (${TOOLCHAIN},gcc)