[llvm-commits] [llvm] r143500 - in /llvm/trunk: autoconf/configure.ac configure projects/sample/autoconf/configure.ac projects/sample/configure

Sebastian Pop spop at codeaurora.org
Tue Nov 1 14:30:04 PDT 2011


Author: spop
Date: Tue Nov  1 16:30:04 2011
New Revision: 143500

URL: http://llvm.org/viewvc/llvm-project?rev=143500&view=rev
Log:
derive LLVM_HOSTTRIPLE from target


Modified:
    llvm/trunk/autoconf/configure.ac
    llvm/trunk/configure
    llvm/trunk/projects/sample/autoconf/configure.ac
    llvm/trunk/projects/sample/configure

Modified: llvm/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/autoconf/configure.ac?rev=143500&r1=143499&r2=143500&view=diff
==============================================================================
--- llvm/trunk/autoconf/configure.ac (original)
+++ llvm/trunk/autoconf/configure.ac Tue Nov  1 16:30:04 2011
@@ -1453,7 +1453,7 @@
                    [Installation directory for man pages])
 AC_DEFINE_UNQUOTED(LLVM_CONFIGTIME, "$LLVM_CONFIGTIME",
                    [Time at which LLVM was configured])
-AC_DEFINE_UNQUOTED(LLVM_HOSTTRIPLE, "$host",
+AC_DEFINE_UNQUOTED(LLVM_HOSTTRIPLE, "$target",
                    [Host triple we were built on])
 
 # Determine which bindings to build.

Modified: llvm/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/configure?rev=143500&r1=143499&r2=143500&view=diff
==============================================================================
--- llvm/trunk/configure (original)
+++ llvm/trunk/configure Tue Nov  1 16:30:04 2011
@@ -20865,7 +20865,7 @@
 
 
 cat >>confdefs.h <<_ACEOF
-#define LLVM_HOSTTRIPLE "$host"
+#define LLVM_HOSTTRIPLE "$target"
 _ACEOF
 
 

Modified: llvm/trunk/projects/sample/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/sample/autoconf/configure.ac?rev=143500&r1=143499&r2=143500&view=diff
==============================================================================
--- llvm/trunk/projects/sample/autoconf/configure.ac (original)
+++ llvm/trunk/projects/sample/autoconf/configure.ac Tue Nov  1 16:30:04 2011
@@ -1386,7 +1386,7 @@
                    [Installation directory for man pages])
 AC_DEFINE_UNQUOTED(LLVM_CONFIGTIME, "$LLVM_CONFIGTIME",
                    [Time at which LLVM was configured])
-AC_DEFINE_UNQUOTED(LLVM_HOSTTRIPLE, "$host",
+AC_DEFINE_UNQUOTED(LLVM_HOSTTRIPLE, "$target",
                    [Host triple we were built on])
 
 # Determine which bindings to build.

Modified: llvm/trunk/projects/sample/configure
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/sample/configure?rev=143500&r1=143499&r2=143500&view=diff
==============================================================================
--- llvm/trunk/projects/sample/configure (original)
+++ llvm/trunk/projects/sample/configure Tue Nov  1 16:30:04 2011
@@ -20815,7 +20815,7 @@
 
 
 cat >>confdefs.h <<_ACEOF
-#define LLVM_HOSTTRIPLE "$host"
+#define LLVM_HOSTTRIPLE "$target"
 _ACEOF
 
 





More information about the llvm-commits mailing list