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

Unified Diff: pnacl/driver/driver_env.py

Issue 454593002: PNaCl driver: Add libgcc to mixed native/bitcode links (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: explicitly modify env rather than using var expansion Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pnacl/driver/nativeld.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pnacl/driver/driver_env.py
diff --git a/pnacl/driver/driver_env.py b/pnacl/driver/driver_env.py
index 043fefe95191c94af6e9d22f4ce0043c4e06bb30..215b74dc92cc93d76ad4e0b0db3588df2511938e 100755
--- a/pnacl/driver/driver_env.py
+++ b/pnacl/driver/driver_env.py
@@ -50,6 +50,14 @@ INITIAL_ENV = {
'BASE_LIB_X8664' : '${BASE}/lib-bc-x86-64',
'BASE_LIB_ARM' : '${BASE}/lib-bc-arm',
+ 'LIBS_NATIVE_ARCH' : '${LIBS_NATIVE_%ARCH%}',
+ 'LIBS_NATIVE_ARM' : '${BASE_LIB_NATIVE}arm',
+ 'LIBS_NATIVE_ARM_NONSFI' : '${BASE_LIB_NATIVE}arm-nonsfi',
+ 'LIBS_NATIVE_X8632' : '${BASE_LIB_NATIVE}x86-32',
+ 'LIBS_NATIVE_X8632_NONSFI' : '${BASE_LIB_NATIVE}x86-32-nonsfi',
+ 'LIBS_NATIVE_X8664' : '${BASE_LIB_NATIVE}x86-64',
+ 'LIBS_NATIVE_MIPS32' : '${BASE_LIB_NATIVE}mips32',
+
'BASE_LLVM_BIN' : '${BASE_LLVM}/bin',
'TRANSLATOR_BIN' :
'${BASE_TOOLCHAIN}/pnacl_translator/${STANDARD_ARCH}/bin',
« no previous file with comments | « no previous file | pnacl/driver/nativeld.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698