diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-08-03 11:46:55 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2010-11-02 04:15:01 +0200 |
commit | 2f1d60f422b007fc1cbada601fc8c9b7a47001e2 (patch) | |
tree | e8275236c550fefe84279165349834d95efe2820 | |
parent | bab0811d56e183a071fc4098a616bad50dd3dc2b (diff) |
configure: avoid unsupported options with clang on Darwin/PPC
Suppress unsupported compiler options when building with clang on Darwin/PPC.
patch by Rowan James, rowanj@phere.net
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31910 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1409,7 +1409,10 @@ if netbsd || dragonfly ; then fi if darwin; then - extra_cflags="-mdynamic-no-pic -falign-loops=16 -shared-libgcc $extra_cflags" + extra_cflags="-mdynamic-no-pic $extra_cflags" + if test "$(basename $_cc)" != "clang" ; then + extra_cflags="-falign-loops=16 -shared-libgcc $extra_cflags" + fi _timer=timer-darwin.c fi |