Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/libsnes/bizwinmake_debug.sh
2 views
1
#this is for using the dll libco, and so the threads implementation can be used, for easier debugging
2
cd bsnes
3
mkdir obj
4
mkdir out
5
export BIZWINCFLAGS="-I. -O3 -masm=intel -DLIBCO_IMPORT -DLIBCO_MSVC -static-libgcc -static-libstdc++"
6
#for gdb debugging
7
#export BIZWINCFLAGS="-I. -O0 -g -masm=intel -DLIBCO_IMPORT -DLIBCO_MSVC -static-libgcc -static-libstdc++"
8
export TARGET_LIBSNES_LIBDEPS="-L ../libco_msvc_win32/release/ -llibco_msvc_win32 -static-libgcc -static-libstdc++"
9
profile=compatibility platform=win target=libsnes make -e -j 4
10
cd ..
11
cp bsnes/out/snes.dll ../BizHawk.MultiClient/output/dll/libsneshawk.dll
12
13