diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-07-06 13:44:15 -0400 |
---|---|---|
committer | Arun Raghavan <arun@arunraghavan.net> | 2016-07-14 12:57:43 +0900 |
commit | b8be6d1095df620bf0e2b5855818fa4340244254 (patch) | |
tree | ea9d972a029b40cdf8eefeb2fa3fa60c96228265 | |
parent | c9cffb9e3d632b61465afbca5d10c36512888035 (diff) |
build: Use -no-undefined to support both clang and gcc
-rw-r--r-- | webrtc/modules/audio_processing/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webrtc/modules/audio_processing/Makefile.am b/webrtc/modules/audio_processing/Makefile.am index de259f0..5a98913 100644 --- a/webrtc/modules/audio_processing/Makefile.am +++ b/webrtc/modules/audio_processing/Makefile.am @@ -175,7 +175,7 @@ libwebrtc_audio_processing_la_LIBADD = $(top_builddir)/webrtc/libwebrtc.la \ $(LIBWEBRTC_PRIVATEARCH) \ $(GNUSTL_LIBS) libwebrtc_audio_processing_la_LDFLAGS = $(AM_LDFLAGS) $(COMMON_LDFLAGS) \ - -Wl,--no-undefined \ + -no-undefined \ -version-info $(LIBWEBRTC_AUDIO_PROCESSING_VERSION_INFO) # FIXME: The MIPS optimisations need to be hooked up once we have the |