Update build.sh

This commit is contained in:
markwkidd 2018-01-12 18:40:12 -05:00 committed by GitHub
parent 4858d870c0
commit a7fa514518
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,5 @@
#!/bin/sh
gcc -shared -fPIC -L src/ freeintv_libretro.c intv.c memory.c cp1610.c stic.c psg.c controller.c cart.c osd.c -lm -lc -lgcc -o freeintv_libretro.so
cd src
gcc -shared -fPIC freeintv_libretro.c intv.c memory.c cp1610.c stic.c psg.c controller.c cart.c osd.c -lm -lc -lgcc -o ../freeintv_libretro.so
cd ..