| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 # | 4 # |
| 5 # Environment variable NACL_ARCH should be set to one of the following | 5 # Environment variable NACL_ARCH should be set to one of the following |
| 6 # values: i686 x86_64 pnacl arm | 6 # values: i686 x86_64 pnacl arm |
| 7 | 7 |
| 8 | 8 |
| 9 # NAMING CONVENTION | 9 # NAMING CONVENTION |
| 10 # ================= | 10 # ================= |
| (...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 # Specify both --build and --host options. This forces autoconf into cross | 1024 # Specify both --build and --host options. This forces autoconf into cross |
| 1025 # compile mode. This is useful since the autodection doesn't always works. | 1025 # compile mode. This is useful since the autodection doesn't always works. |
| 1026 # For example a trivial PNaCl binary can sometimes run on the linux host if | 1026 # For example a trivial PNaCl binary can sometimes run on the linux host if |
| 1027 # it has the correct LLVM bimfmt support. What is more, autoconf will | 1027 # it has the correct LLVM bimfmt support. What is more, autoconf will |
| 1028 # generate a warning if only --host is specified. | 1028 # generate a warning if only --host is specified. |
| 1029 LogExecute "${NACL_CONFIGURE_PATH}" \ | 1029 LogExecute "${NACL_CONFIGURE_PATH}" \ |
| 1030 --build=${CONF_BUILD} \ | 1030 --build=${CONF_BUILD} \ |
| 1031 --host=${CONF_HOST} \ | 1031 --host=${CONF_HOST} \ |
| 1032 --prefix=${PREFIX} \ | 1032 --prefix=${PREFIX} \ |
| 1033 --with-http=no \ | 1033 --with-http=no \ |
| 1034 --with-html=no \ | |
| 1035 --with-ftp=no \ | 1034 --with-ftp=no \ |
| 1036 --${NACL_OPTION}-mmx \ | 1035 --${NACL_OPTION}-mmx \ |
| 1037 --${NACL_OPTION}-sse \ | 1036 --${NACL_OPTION}-sse \ |
| 1038 --${NACL_OPTION}-sse2 \ | 1037 --${NACL_OPTION}-sse2 \ |
| 1039 --${NACL_OPTION}-asm \ | 1038 --${NACL_OPTION}-asm \ |
| 1040 --with-x=no \ | 1039 --with-x=no \ |
| 1041 ${EXTRA_CONFIGURE_ARGS:-} | 1040 ${EXTRA_CONFIGURE_ARGS:-} |
| 1042 } | 1041 } |
| 1043 | 1042 |
| 1044 | 1043 |
| (...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1605 ###################################################################### | 1604 ###################################################################### |
| 1606 # Always run | 1605 # Always run |
| 1607 # These functions are called when this script is imported to do | 1606 # These functions are called when this script is imported to do |
| 1608 # any essential checking/setup operations. | 1607 # any essential checking/setup operations. |
| 1609 ###################################################################### | 1608 ###################################################################### |
| 1610 PatchSpecsFile | 1609 PatchSpecsFile |
| 1611 InjectSystemHeaders | 1610 InjectSystemHeaders |
| 1612 InstallConfigSite | 1611 InstallConfigSite |
| 1613 GetRevision | 1612 GetRevision |
| 1614 MakeDirs | 1613 MakeDirs |
| OLD | NEW |