1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-24 06:10:09 +01:00
Files
.github
cmake-proxies
dox2-src
help
images
include
lib-src
ffmpeg
header-substitutes
libflac
build
doc
examples
include
m4
man
objs
src
test
AUTHORS
COPYING.FDL
COPYING.GPL
COPYING.LGPL
COPYING.Xiph
FLAC-vs2005.sln
FLAC.sln
Makefile.am
Makefile.in
Makefile.lite
README
add-maintainer-mode.patch
ar-lib
autogen.sh
bypass-constraint-problem.patch
compile
config.guess
config.h.in
config.rpath
config.sub
configure
configure.ac
depcomp
install-sh
ltmain.sh
mac-asm-fixes.patch
missing
strip_non_asm_libtool_args.sh
libnyquist
libogg
libsbsms
libscorealign
libsndfile
libsoxr
libvamp
libvorbis
lv2
portaudio-v19
portburn
portmidi
portmixer
portsmf
soundtouch
sqlite
twolame
audacity-patches.txt
libraries
linux
locale
mac
modules
nyq-po
nyquist
plug-ins
presets
qa
scripts
src
tests
win
.gitattributes
.gitignore
ABOUT-NLS
BUILDING.md
CHANGELOG.txt
CMAKE_OPTIONS.md
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
INSTALL
LICENSE.txt
PULL_REQUEST_TEMPLATE.md
README.md
README.txt
audacity.dox
audacity.dox.in
nographs.dox
todo.txt
audacity/lib-src/libflac/strip_non_asm_libtool_args.sh
2010-01-24 09:19:39 +00:00

20 lines
440 B
Bash
Executable File

#!/bin/sh
#
# libtool assumes that the compiler can handle the -fPIC flag.
# This isn't always true (for example, nasm can't handle it).
# Also, on some versions of OS X it tries to pass -fno-common
# to 'as' which causes problems.
command=""
while [ $1 ]; do
if [ "$1" != "-fPIC" ]; then
if [ "$1" != "-DPIC" ]; then
if [ "$1" != "-fno-common" ]; then
command="$command $1"
fi
fi
fi
shift
done
echo $command
exec $command