1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-06-28 19:20:38 +00:00

Maybe -no-pie will work this time for Linux without breaking autobuilds?

This commit is contained in:
FellippeHeitor 2019-04-04 01:40:14 -03:00
parent 358b725bc4
commit 18f52b4fa5
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
g++ -w qbx.cpp parts/core/os/lnx/src.a -lGL -lGLU -lX11 -lpthread -ldl -lrt -D FREEGLUT_STATIC -o
g++ -no-pie -w qbx.cpp parts/core/os/lnx/src.a -lGL -lGLU -lX11 -lpthread -ldl -lrt -D FREEGLUT_STATIC -o

View file

@ -192,7 +192,7 @@ else
echo "Building 'QB64'"
cp -r ./internal/source/* ./internal/temp/
cd internal/c
g++ -w qbx.cpp libqb/os/lnx/libqb_setup.o parts/video/font/ttf/os/lnx/src.o parts/core/os/lnx/src.a -lGL -lGLU -lX11 -lpthread -ldl -lrt -D FREEGLUT_STATIC -o ../../qb64
g++ -no-pie -w qbx.cpp libqb/os/lnx/libqb_setup.o parts/video/font/ttf/os/lnx/src.o parts/core/os/lnx/src.a -lGL -lGLU -lX11 -lpthread -ldl -lrt -D FREEGLUT_STATIC -o ../../qb64
cd ../..
fi