From f1048557bd2da4aabc4b2687f8712a9e9a25b780 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Fri, 26 Apr 2013 11:25:02 -0700 Subject: [PATCH] [NaCl] Build for all nacl architectures --- build-nacl.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build-nacl.sh b/build-nacl.sh index 1c173f490f..e8f95e8ef2 100755 --- a/build-nacl.sh +++ b/build-nacl.sh @@ -39,5 +39,11 @@ if [ "$1" = "clean" ]; then exit 0 fi -make DEBUG=1 all -make DEBUG=0 all +make NACL_ARCH=x86_64 DEBUG=1 all +make NACL_ARCH=x86_64 DEBUG=0 all + +make NACL_ARCH=i686 DEBUG=1 all +make NACL_ARCH=i686 DEBUG=0 all + +make NACL_ARCH=arm DEBUG=1 all +make NACL_ARCH=arm DEBUG=0 all