summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorIvan Krasin <krasin@chromium.org>2011-08-18 22:54:21 +0000
committerIvan Krasin <krasin@chromium.org>2011-08-18 22:54:21 +0000
commitfb23462889ff2dcd016a4b4169ebce94a878218e (patch)
treeab51d0c38c87d70a137d9382ccce8237c4787029 /configure
parent78affc9ea1978d707b376180ec559b62fbf9ea05 (diff)
downloadllvm-fb23462889ff2dcd016a4b4169ebce94a878218e.tar.gz
llvm-fb23462889ff2dcd016a4b4169ebce94a878218e.tar.bz2
llvm-fb23462889ff2dcd016a4b4169ebce94a878218e.tar.xz
Add NativeClient operating system support.
This patch adds support of NativeClient (*-*-nacl) OS support to LLVM. It's already supported in autoconf/config.sub. The motivation for this change is to start upstreaming PNaCl work. The whole set of patches include llvm backends (i686, x86_64, ARM), llvm-gcc (probably, would not be upstreamed because it's deprecated) and clang (the work has been just started, the amount of changes is going to be low and the most of the work is expected to be done close to the mainline). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138005 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index ebaec686b3..c8ada54cb9 100755
--- a/configure
+++ b/configure
@@ -2341,6 +2341,8 @@ else
llvm_cv_target_os_type="Haiku" ;;
*-*-rtems*)
llvm_cv_target_os_type="RTEMS" ;;
+ *-*-nacl*)
+ llvm_cv_target_os_type="NativeClient" ;;
*-unknown-eabi*)
llvm_cv_target_os_type="Freestanding" ;;
*)