diff options
| author | Christian Gmeiner <christian.gmeiner@gmail.com> | 2008-09-01 06:14:27 +0000 |
|---|---|---|
| committer | Christian Gmeiner <christian.gmeiner@gmail.com> | 2008-09-01 06:14:27 +0000 |
| commit | 07840bdd0a8b30082a86ae4257397be0770370ab (patch) | |
| tree | 5aa78546beb913e0f481dae1c1ac18d4b2dd36a7 | |
| parent | 3409e9d195d36dcdd56d59e9fad1b9e0f3fba7a0 (diff) | |
| download | rockbox-07840bdd0a8b30082a86ae4257397be0770370ab.zip rockbox-07840bdd0a8b30082a86ae4257397be0770370ab.tar.gz rockbox-07840bdd0a8b30082a86ae4257397be0770370ab.tar.bz2 rockbox-07840bdd0a8b30082a86ae4257397be0770370ab.tar.xz | |
add -fPIC to GCCOPTS for simgcc to prevent warnings like: warning: creating a DT_TEXTREL in object.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18376 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure index 728d4d3..a992ecc 100755 --- a/tools/configure +++ b/tools/configure @@ -99,7 +99,7 @@ simcc () { prefixtools "" simver=sdl - GCCOPTS='-W -Wall -g -fno-builtin' + GCCOPTS='-W -Wall -g -fno-builtin -fPIC' output="rockboxui" # use this as default output binary name |