-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from Miepee/master
Add Windows optimized workflow
- Loading branch information
Showing
2 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/sh | ||
|
||
# For whatever reason, Windows sometimes has LANG unset. This breaks grep at the end, so setting this manually. | ||
export LANG=C.UTF-8 | ||
|
||
echo "This script creates a heavily optimized Windows binary. For debugging you're better off using the Makefile directly." | ||
|
||
# Set GCC specific optimization flags. These may need to be revisited when the project is build using MVSC. | ||
FLAGS='-Wall -O3 -flto -fuse-linker-plugin -fomit-frame-pointer -fmerge-all-constants -fvisibility=hidden' | ||
FLAGS=$FLAGS' -fno-exceptions -fno-unwind-tables -fno-asynchronous-unwind-tables' | ||
FLAGS=$FLAGS' -ffunction-sections -fdata-sections -Wl,--gc-sections -fprofile-dir=obj/' | ||
|
||
|
||
rm floating.zip | ||
rm -r obj/* || true | ||
|
||
#if trying to make a 32bit Flips, add -Wl,--large-address-aware | ||
|
||
echo 'Windows (1/3)' | ||
rm -r obj/* flips.exe; make CFLAGS="$FLAGS -fprofile-generate -lgcov" | ||
[ -e flips.exe ] || exit | ||
echo 'Windows (2/3)' | ||
./flips.exe --create --bps-delta profile/firefox-10.0esr.tar profile/firefox-17.0esr.tar /dev/null | ||
./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; make 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|api-ms-win-crt)' && \ | ||
echo "Invalid dependency" && exit 1 | ||
|
||
exit 0 | ||
|