Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1040)

Side by Side Diff: ports/libvpx/nacl.patch

Issue 1804293003: Add support for new pnacl native toolchain driver (Closed) Base URL: https://chromium.googlesource.com/webports.git@master
Patch Set: Fix according to Brad's comments Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 diff --git a/build/make/Makefile b/build/make/Makefile
2 --- a/build/make/Makefile
3 +++ b/build/make/Makefile
4 @@ -207,6 +207,8 @@ $(BUILD_PFX)%.asm.s: %.asm
5 # If we're in debug mode, pretend we don't have GNU strip, to fall back to
6 # the copy implementation
7 HAVE_GNU_STRIP := $(if $(CONFIG_DEBUG),,$(HAVE_GNU_STRIP))
8 +# We don't have STRIP in new pnacl driver so fall back to using cp
9 +HAVE_GNU_STRIP := $(if $(filter $(NACL_ARCH), le32),,$(HAVE_GNU_STRIP))
10 ifeq ($(HAVE_GNU_STRIP),yes)
11 # Older binutils strip global symbols not needed for relocation processing
12 # when given --strip-unneeded. Using nm and awk to identify globals and
13 diff --git a/build/make/configure.sh b/build/make/configure.sh
14 --- a/build/make/configure.sh
15 +++ b/build/make/configure.sh
16 @@ -428,7 +428,7 @@ NM=${NM}
17
18 CFLAGS = ${CFLAGS}
19 CXXFLAGS = ${CXXFLAGS}
20 -ARFLAGS = -rus\$(if \$(quiet),c,v)
21 +ARFLAGS = rus\$(if \$(quiet),c,v)
22 LDFLAGS = ${LDFLAGS}
23 ASFLAGS = ${ASFLAGS}
24 extralibs = ${extralibs}
OLDNEW
« make_all.sh ('K') | « ports/libmatroska/build.sh ('k') | ports/libyuv/build.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698