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

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

Issue 1399633002: Add emscripten support to config.sub (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@hello_emscripten
Patch Set: Created 5 years, 2 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
« no previous file with comments | « ports/zlib/diff_skip.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 diff --git a/configure b/configure 1 diff --git a/configure b/configure
2 --- a/configure 2 --- a/configure
3 +++ b/configure 3 +++ b/configure
4 @@ -188,6 +188,15 @@ if test "$gcc" -eq 1 && ($cc -c $test.c) >> configure.log 2 >&1; then 4 @@ -188,6 +188,13 @@ if test "$gcc" -eq 1 && ($cc -c $test.c) >> configure.log 2 >&1; then
5 *BSD | *bsd* | DragonFly) 5 *BSD | *bsd* | DragonFly)
6 LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script ,zlib.map"} 6 LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script ,zlib.map"}
7 LDCONFIG="ldconfig -m" ;; 7 LDCONFIG="ldconfig -m" ;;
8 + pnacl) 8 + pnacl)
9 + LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script ,zlib.map"}
10 + EXE='.pexe' ;; 9 + EXE='.pexe' ;;
11 + nacl) 10 + nacl)
12 + LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script ,zlib.map"} 11 + LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script ,zlib.map"}
13 + EXE='.nexe' ;; 12 + EXE='.nexe' ;;
14 + em) 13 + emscripten)
15 + LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script ,zlib.map"}
16 + EXE='.js' ;; 14 + EXE='.js' ;;
17 CYGWIN* | Cygwin* | cygwin* | OS/2*) 15 CYGWIN* | Cygwin* | cygwin* | OS/2*)
18 EXE='.exe' ;; 16 EXE='.exe' ;;
19 MINGW* | mingw*) 17 MINGW* | mingw*)
OLDNEW
« no previous file with comments | « ports/zlib/diff_skip.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698