mirror of https://github.com/stella-emu/stella.git
Less noise from clang.
This commit is contained in:
parent
188c3b5be1
commit
ffb366f273
|
@ -580,6 +580,10 @@ else
|
||||||
darwin*)
|
darwin*)
|
||||||
DEFINES="$DEFINES -DUNIX -DDARWIN"
|
DEFINES="$DEFINES -DUNIX -DDARWIN"
|
||||||
_host_os=darwin
|
_host_os=darwin
|
||||||
|
if test "$have_clang" = yes; then
|
||||||
|
CXXFLAGS="$CXXFLAGS -Wno-documentation-unknown-command -Wno-documentation-pedantic -Wno-poison-system-directories"
|
||||||
|
CXXFLAGS="$CXXFLAGS -Wno-unknown-warning-option"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
irix*)
|
irix*)
|
||||||
DEFINES="$DEFINES -DUNIX"
|
DEFINES="$DEFINES -DUNIX"
|
||||||
|
@ -821,8 +825,9 @@ CHEAT="$SRC/cheat"
|
||||||
LIBPNG="$SRC/libpng"
|
LIBPNG="$SRC/libpng"
|
||||||
ZLIB="$SRC/zlib"
|
ZLIB="$SRC/zlib"
|
||||||
SQLITE="$SRC/common/repository/sqlite"
|
SQLITE="$SRC/common/repository/sqlite"
|
||||||
|
JSON="$SRC/json"
|
||||||
|
|
||||||
INCLUDES="-I$CORE -I$COMMON -I$TV -I$TIA -I$TIA_FRAME_MANAGER"
|
INCLUDES="-I$CORE -I$COMMON -I$TV -I$TIA -I$TIA_FRAME_MANAGER -I$JSON"
|
||||||
|
|
||||||
INCLUDES="$INCLUDES `$_sdlconfig --cflags`"
|
INCLUDES="$INCLUDES `$_sdlconfig --cflags`"
|
||||||
if test "$_build_static" = yes ; then
|
if test "$_build_static" = yes ; then
|
||||||
|
|
Loading…
Reference in New Issue