Skip to content
Snippets Groups Projects
Commit 4471b5be authored by alice's avatar alice
Browse files

community/mingw-w64-gcc: fix build

parent e5ff8138
No related branches found
No related tags found
No related merge requests found
......@@ -45,9 +45,10 @@ x86)
esac
build() {
export CFLAGS="$CFLAGS -O2"
export CXXFLAGS="$CXXFLAGS -O2"
export CPPFLAGS="$CPPFLAGS -O2"
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100431
export CFLAGS="$CFLAGS -O2 -Wno-error=format-security"
export CXXFLAGS="$CXXFLAGS -O2 -Wno-error=format-security"
export CPPFLAGS="$CPPFLAGS -O2 -Wno-error=format-security"
local target
for target in $_targets; do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment