mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 16:06:42 +02:00
17 lines
866 B
Diff
17 lines
866 B
Diff
Author: Simon Frankenberger <simon-alpine@fraho.eu>
|
|
Subject: Fix compilation of jtreg / gtest objects with -Werror=format-security CFLAGS
|
|
Upstream: Yes / closed unresolved (https://bugs.openjdk.org/browse/JDK-8218814)
|
|
|
|
Remove the -Wno-format CLFAG for test objects
|
|
|
|
--- old/make/common/TestFilesCompilation.gmk
|
|
+++ new/make/common/TestFilesCompilation.gmk
|
|
@@ -112,7 +112,7 @@
|
|
CXXFLAGS := $$(TEST_CFLAGS) $$($1_CFLAGS) $$($1_CFLAGS_$$(name)), \
|
|
LD_SET_ORIGIN := $$($1_LD_SET_ORIGIN), \
|
|
LDFLAGS := $$($1_LDFLAGS_$$(name)), \
|
|
- DISABLED_WARNINGS_gcc := format undef unused-function unused-value, \
|
|
+ DISABLED_WARNINGS_gcc := undef unused-function unused-value, \
|
|
DISABLED_WARNINGS_clang := undef format-nonliteral \
|
|
missing-field-initializers sometimes-uninitialized, \
|
|
DEFAULT_LIBCXX := false, \
|