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

Unified Diff: examples/graphics/photo_c_salt/Makefile

Issue 11636027: Add ARM toolchain support. (Closed) Base URL: git@github.com:samclegg/naclports.git@sbc
Patch Set: revert .c file change Created 7 years, 11 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 | « examples/graphics/photo/Makefile ('k') | examples/graphics/xaos/nacl-xaos.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: examples/graphics/photo_c_salt/Makefile
diff --git a/examples/graphics/photo_c_salt/Makefile b/examples/graphics/photo_c_salt/Makefile
index ce78f50572d77750f97c263bbd9ea0ee02eecc2b..0f6f33697f0aa10d8d71083492a6660e5d8f30fd 100644
--- a/examples/graphics/photo_c_salt/Makefile
+++ b/examples/graphics/photo_c_salt/Makefile
@@ -111,22 +111,22 @@ clean:
# Build the required packages.
$(LIB_JPEG_32):
(cd $(NACLPORTS_ROOT)/packages/scripts/jpeg-6b; \
- export NACL_PACKAGES_BITSIZE=32; \
+ export NACL_ARCH=i686; \
./nacl-jpeg-6b.sh)
$(LIB_JPEG_64):
(cd $(NACLPORTS_ROOT)/packages/scripts/jpeg-6b; \
- export NACL_PACKAGES_BITSIZE=64; \
+ export NACL_ARCH=x86_64; \
./nacl-jpeg-6b.sh)
$(BOOST_SMART_PTR_32):
(cd $(NACLPORTS_ROOT)/packages/scripts/boost_1_43_0; \
- export NACL_PACKAGES_BITSIZE=32; \
+ export NACL_ARCH=i686; \
./nacl-boost_1_43_0.sh)
$(BOOST_SMART_PTR_64):
(cd $(NACLPORTS_ROOT)/packages/scripts/boost_1_43_0; \
- export NACL_PACKAGES_BITSIZE=64; \
+ export NACL_ARCH=x86_64; \
./nacl-boost_1_43_0.sh)
# Download and patch the Carpe sliders.
« no previous file with comments | « examples/graphics/photo/Makefile ('k') | examples/graphics/xaos/nacl-xaos.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698