Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
llvm-epi
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Roger Ferrer
llvm-epi
Commits
1facc1db
Commit
1facc1db
authored
14 years ago
by
Nick Lewycky
Browse files
Options
Downloads
Patches
Plain Diff
Update configure for change to autoconf/configure.ac to add PTX backend.
llvm-svn: 113236
parent
4c82c6c6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
llvm/configure
+9
-4
9 additions, 4 deletions
llvm/configure
with
9 additions
and
4 deletions
llvm/configure
+
9
−
4
View file @
1facc1db
...
@@ -1414,8 +1414,8 @@ Optional Features:
...
@@ -1414,8 +1414,8 @@ Optional Features:
--enable-targets Build specific host targets: all or
--enable-targets Build specific host targets: all or
target1,target2,... Valid targets are: host, x86,
target1,target2,... Valid targets are: host, x86,
x86_64, sparc, powerpc, alpha, arm, mips, spu,
x86_64, sparc, powerpc, alpha, arm, mips, spu,
pic16, xcore, msp430, systemz, blackfin, cbe,
and
pic16, xcore, msp430, systemz, blackfin,
ptx,
cbe,
cpp (default=all)
and
cpp (default=all)
--enable-cbe-printf-a Enable C Backend output with hex floating point via
--enable-cbe-printf-a Enable C Backend output with hex floating point via
%a (default is YES)
%a (default is YES)
--enable-bindings Build specific language bindings:
--enable-bindings Build specific language bindings:
...
@@ -2361,6 +2361,7 @@ else
...
@@ -2361,6 +2361,7 @@ else
s390x-*) llvm_cv_target_arch="SystemZ" ;;
s390x-*) llvm_cv_target_arch="SystemZ" ;;
bfin-*) llvm_cv_target_arch="Blackfin" ;;
bfin-*) llvm_cv_target_arch="Blackfin" ;;
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
ptx-*) llvm_cv_target_arch="PTX" ;;
*) llvm_cv_target_arch="Unknown" ;;
*) llvm_cv_target_arch="Unknown" ;;
esac
esac
fi
fi
...
@@ -4827,6 +4828,8 @@ else
...
@@ -4827,6 +4828,8 @@ else
Blackfin) TARGET_HAS_JIT=0
Blackfin) TARGET_HAS_JIT=0
;;
;;
MBlaze) TARGET_HAS_JIT=0
MBlaze) TARGET_HAS_JIT=0
;;
PTX) TARGET_HAS_JIT=0
;;
;;
*) TARGET_HAS_JIT=0
*) TARGET_HAS_JIT=0
;;
;;
...
@@ -4955,7 +4958,7 @@ if test "$enableval" = host-only ; then
...
@@ -4955,7 +4958,7 @@ if test "$enableval" = host-only ; then
enableval=host
enableval=host
fi
fi
case "$enableval" in
case "$enableval" in
all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Mips CellSPU PIC16 XCore MSP430 SystemZ Blackfin CBackend CppBackend MBlaze" ;;
all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha ARM Mips CellSPU PIC16 XCore MSP430 SystemZ Blackfin CBackend CppBackend MBlaze
PTX
" ;;
*)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do
*)for a_target in `echo $enableval|sed -e 's/,/ /g' ` ; do
case "$a_target" in
case "$a_target" in
x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
...
@@ -4974,6 +4977,7 @@ case "$enableval" in
...
@@ -4974,6 +4977,7 @@ case "$enableval" in
cbe) TARGETS_TO_BUILD="CBackend $TARGETS_TO_BUILD" ;;
cbe) TARGETS_TO_BUILD="CBackend $TARGETS_TO_BUILD" ;;
cpp) TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;;
cpp) TARGETS_TO_BUILD="CppBackend $TARGETS_TO_BUILD" ;;
mblaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
mblaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
ptx) TARGETS_TO_BUILD="PTX $TARGETS_TO_BUILD" ;;
host) case "$llvm_cv_target_arch" in
host) case "$llvm_cv_target_arch" in
x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
x86) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
x86_64) TARGETS_TO_BUILD="X86 $TARGETS_TO_BUILD" ;;
...
@@ -4989,6 +4993,7 @@ case "$enableval" in
...
@@ -4989,6 +4993,7 @@ case "$enableval" in
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
s390x) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
s390x) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
Blackfin) TARGETS_TO_BUILD="Blackfin $TARGETS_TO_BUILD" ;;
Blackfin) TARGETS_TO_BUILD="Blackfin $TARGETS_TO_BUILD" ;;
PTX) TARGETS_TO_BUILD="PTX $TARGETS_TO_BUILD" ;;
*) { { echo "$as_me:$LINENO: error: Can not set target to build" >&5
*) { { echo "$as_me:$LINENO: error: Can not set target to build" >&5
echo "$as_me: error: Can not set target to build" >&2;}
echo "$as_me: error: Can not set target to build" >&2;}
{ (exit 1); exit 1; }; } ;;
{ (exit 1); exit 1; }; } ;;
...
@@ -11389,7 +11394,7 @@ else
...
@@ -11389,7 +11394,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
cat > conftest.$ac_ext <<EOF
#line 1139
2
"configure"
#line 1139
7
"configure"
#include "confdefs.h"
#include "confdefs.h"
#if HAVE_DLFCN_H
#if HAVE_DLFCN_H
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment