Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion make2/build_jconsole.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ common="$OPENMP -fPIC -O2 -fvisibility=hidden -fno-strict-aliasing \
-Wno-sign-compare \
-Wno-type-limits \
-Wno-unused-parameter \
-Wno-unused-value "
-Wno-unused-value \
-Wno-format-overflow"
GNUC_MAJOR=$(echo __GNUC__ | $CC -E -x c - | tail -n 1)
GNUC_MINOR=$(echo __GNUC_MINOR__ | $CC -E -x c - | tail -n 1)
if [ $GNUC_MAJOR -ge 5 ] ; then
Expand Down
3 changes: 2 additions & 1 deletion make2/build_jnative.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ common="$OPENMP -fPIC -O2 -fvisibility=hidden -fno-strict-aliasing \
-Wno-sign-compare \
-Wno-type-limits \
-Wno-unused-parameter \
-Wno-unused-value "
-Wno-unused-value \
-Wno-format-overflow"
GNUC_MAJOR=$(echo __GNUC__ | $CC -E -x c - | tail -n 1)
GNUC_MINOR=$(echo __GNUC_MINOR__ | $CC -E -x c - | tail -n 1)
if [ $GNUC_MAJOR -ge 5 ] ; then
Expand Down
3 changes: 2 additions & 1 deletion make2/build_libj.sh
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ common="$OPENMP -fPIC -O2 -fvisibility=hidden -fno-strict-aliasing \
-Wno-sign-compare \
-Wno-type-limits \
-Wno-unused-parameter \
-Wno-unused-value "
-Wno-unused-value \
-Wno-format-overflow"
GNUC_MAJOR=$(echo __GNUC__ | $CC -E -x c - | tail -n 1)
GNUC_MINOR=$(echo __GNUC_MINOR__ | $CC -E -x c - | tail -n 1)
if [ $GNUC_MAJOR -ge 5 ] ; then
Expand Down
3 changes: 2 additions & 1 deletion make2/build_tsdll.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ common="$OPENMP -fPIC -O2 -fvisibility=hidden -fno-strict-aliasing \
-Wno-sign-compare \
-Wno-type-limits \
-Wno-unused-parameter \
-Wno-unused-value "
-Wno-unused-value \
-Wno-format-overflow"
GNUC_MAJOR=$(echo __GNUC__ | $CC -E -x c - | tail -n 1)
GNUC_MINOR=$(echo __GNUC_MINOR__ | $CC -E -x c - | tail -n 1)
if [ $GNUC_MAJOR -ge 5 ] ; then
Expand Down