This commit is contained in:
NishiOwO 2025-04-10 05:29:16 +09:00
parent 9309bc8604
commit 5f1826e689
No known key found for this signature in database
GPG Key ID: 27EF69B208EB9343
2 changed files with 6 additions and 3 deletions

View File

@ -26,5 +26,5 @@ cd ..
cd .. cd ..
premake5 gmake2 premake5 gmake2 --backend=opengl --opengl=wgl
${MAKE} config=release_win${BITS}-wgl -j4 ${MAKE} config=release_win${BITS} -j4

View File

@ -1,5 +1,8 @@
#!/bin/sh #!/bin/sh
CC=${CC:-${GCC_PREFIX}gcc}
OBJDUMP=${OBJDUMP:-${GCC_PREFIX}objdump}
solve () { solve () {
path="" path=""
$OBJDUMP -p $1 | grep "DLL Name:" | rev | cut -d" " -f1 | rev | while read a; do $OBJDUMP -p $1 | grep "DLL Name:" | rev | cut -d" " -f1 | rev | while read a; do
@ -17,4 +20,4 @@ solve () {
done done
} }
solve bin/NishBox.exe solve bin/*/*/nishbox.exe