Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace libpng and stb_image with PistonDevelopers/image #7933

Merged
merged 3 commits into from Oct 12, 2015
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Don't pass -pie when linking a dylib on gonk

  • Loading branch information
mbrubeck committed Oct 10, 2015
commit a15acef4c8a2a69714dc68c54b971f8ae0f3e55d
@@ -1,2 +1,9 @@
#!/bin/bash
arm-linux-androideabi-g++ $@ $LDFLAGS -pie -lGLESv2 -L$GONKDIR/backup-flame/system/lib/

# Add the position-independent executable flag if not building a shared lib.
if echo $@ | grep -qv " -shared"
then
PIE_FLAG="-pie"
fi
$PIE_FLAG
arm-linux-androideabi-g++ $@ $LDFLAGS $PIE_FLAG -lGLESv2 -L$GONKDIR/backup-flame/system/lib/
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.