mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
59 lines
2.0 KiB
Bash
Executable File
59 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$HOME" != "/home/walrus" ]; then
|
|
#This script is for making official releases, including a Windows build.
|
|
#If you're intending to fork Floating IPS, or take over maintenance, you're welcome to edit this script.
|
|
#If not, you don't want it. make.sh enables all optimizations for a local build.
|
|
echo "Use ./make.sh instead."
|
|
exit 1
|
|
fi
|
|
|
|
rm floating.zip
|
|
|
|
# . rather than ./make.sh, so $FLAGS remains set
|
|
. ./make.sh
|
|
mv flips flips-linux
|
|
7z a floating.zip flips-linux
|
|
mv ./flips-linux ~/bin/flips
|
|
|
|
#wmake64 is
|
|
# #!/bin/sh
|
|
# export WINEPATH=$(winepath -w ~/tools/mingw64-11.2.0/bin/)
|
|
# exec wine mingw32-make "$@"
|
|
|
|
#if trying to make a 32bit Flips, add -Wl,--large-address-aware
|
|
|
|
echo 'Windows (1/3)'
|
|
rm -r obj/* flips.exe; wmake64 TARGET=windows CFLAGS="$FLAGS -fprofile-generate -lgcov"
|
|
[ -e flips.exe ] || exit
|
|
echo 'Windows (2/3)'
|
|
/usr/bin/time --verbose wine flips.exe --create --bps-delta profile/firefox-10.0esr.tar profile/firefox-17.0esr.tar /dev/null
|
|
/usr/bin/time --verbose wine flips.exe --create --bps-delta-moremem profile/firefox-10.0esr.tar profile/firefox-17.0esr.tar /dev/null
|
|
echo 'Windows (3/3)'
|
|
rm flips.exe; wmake64 TARGET=windows CFLAGS="$FLAGS -fprofile-use -s"
|
|
|
|
#verify that there are no unexpected dependencies
|
|
objdump -p flips.exe | grep 'DLL Name' | \
|
|
grep -Pvi '(msvcrt|advapi32|comctl32|comdlg32|gdi32|kernel32|shell32|user32)' && \
|
|
echo "Invalid dependency" && exit
|
|
|
|
#test cli binaries
|
|
echo "CLI"
|
|
make TARGET=cli
|
|
[ -e flips ] || exit
|
|
rm flips
|
|
|
|
echo Finishing
|
|
7z a floating.zip flips.exe
|
|
zipcrush floating.zip
|
|
#The random numbers are the size of Lunar IPS v1.02, which I wish to stay below.
|
|
#(Or wished a while ago, but my feature set is so much bigger than Lunar that I'll accept being bigger.)
|
|
echo Size: $(stat -c%s flips.exe)/155648
|
|
echo \(Linux: $(stat -c%s ~/bin/flips)\)
|
|
echo \(Zipped: $(stat -c%s floating.zip)/59881\)
|
|
|
|
/usr/bin/time --format='time: %E' flips --create --bps-delta sm64.z64 star.z64 /dev/null > /dev/null
|
|
echo 'expected: 0:04.56'
|
|
|
|
#./special.sh
|