mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-29 14:42:26 +00:00
CONFIGURE: move some libs required by n64 port
Some system libs weren't found during link stage, this should fix it
This commit is contained in:
parent
811b257014
commit
42fa23ff16
7
configure
vendored
7
configure
vendored
@ -2249,7 +2249,7 @@ case $_backend in
|
||||
INCLUDES="$INCLUDES "'-I$(N64SDK)/hkz-libn64'
|
||||
INCLUDES="$INCLUDES "'-I$(srcdir)/backends/platform/n64'
|
||||
LIBS="$LIBS -lpakfs -lframfs -ln64 -ln64utils -lromfs"
|
||||
LIBS="$LIBS -lm -lstdc++ -lc -lgcc -lz -lnosys"
|
||||
LIBS="$LIBS -lm -lstdc++ -lz"
|
||||
;;
|
||||
null)
|
||||
DEFINES="$DEFINES -DUSE_NULL_DRIVER"
|
||||
@ -3208,6 +3208,11 @@ case $_backend in
|
||||
# than pick up anything unhygenic from the Android libs.
|
||||
LIBS="-Wl,-Bstatic $static_libs -Wl,-Bdynamic -lgcc $system_libs -llog -lGLESv1_CM"
|
||||
;;
|
||||
n64)
|
||||
# Move some libs down here, otherwise some symbols requires by libvorbis aren't found
|
||||
# during linking stage
|
||||
LIBS="$LIBS -lc -lgcc -lnosys"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user