mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
[SystemZ] Add configure bits
This patch wires up the SystemZ target in configure, so that it can now be built using --enable-targets=systemz. It is not yet included in the default build (--enable-targets=all); this will be done by a follow-up patch. Patch by Richard Sandiford. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181208 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7207285e65
commit
735ab83b3c
@ -89,7 +89,7 @@ set(LLVM_ALL_TARGETS
|
|||||||
)
|
)
|
||||||
|
|
||||||
# List of targets with JIT support:
|
# List of targets with JIT support:
|
||||||
set(LLVM_TARGETS_WITH_JIT X86 PowerPC ARM Mips)
|
set(LLVM_TARGETS_WITH_JIT X86 PowerPC ARM Mips SystemZ)
|
||||||
|
|
||||||
set(LLVM_TARGETS_TO_BUILD "all"
|
set(LLVM_TARGETS_TO_BUILD "all"
|
||||||
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
CACHE STRING "Semicolon-separated list of targets to build, or \"all\".")
|
||||||
|
@ -402,6 +402,7 @@ AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
|
|||||||
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
||||||
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
||||||
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
||||||
|
s390x-*) llvm_cv_target_arch="SystemZ" ;;
|
||||||
*) llvm_cv_target_arch="Unknown" ;;
|
*) llvm_cv_target_arch="Unknown" ;;
|
||||||
esac])
|
esac])
|
||||||
|
|
||||||
@ -435,6 +436,7 @@ case $host in
|
|||||||
msp430-*) host_arch="MSP430" ;;
|
msp430-*) host_arch="MSP430" ;;
|
||||||
hexagon-*) host_arch="Hexagon" ;;
|
hexagon-*) host_arch="Hexagon" ;;
|
||||||
mblaze-*) host_arch="MBlaze" ;;
|
mblaze-*) host_arch="MBlaze" ;;
|
||||||
|
s390x-*) host_arch="SystemZ" ;;
|
||||||
*) host_arch="Unknown" ;;
|
*) host_arch="Unknown" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -654,6 +656,7 @@ else
|
|||||||
Hexagon) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
Hexagon) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
MBlaze) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
MBlaze) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
NVPTX) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
NVPTX) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
|
SystemZ) AC_SUBST(TARGET_HAS_JIT,1) ;;
|
||||||
*) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
*) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
@ -795,7 +798,7 @@ TARGETS_TO_BUILD=""
|
|||||||
AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
|
AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
|
||||||
[Build specific host targets: all or target1,target2,... Valid targets are:
|
[Build specific host targets: all or target1,target2,... Valid targets are:
|
||||||
host, x86, x86_64, sparc, powerpc, arm, aarch64, mips, hexagon,
|
host, x86, x86_64, sparc, powerpc, arm, aarch64, mips, hexagon,
|
||||||
xcore, msp430, nvptx, and cpp (default=all)]),,
|
xcore, msp430, nvptx, systemz, and cpp (default=all)]),,
|
||||||
enableval=all)
|
enableval=all)
|
||||||
if test "$enableval" = host-only ; then
|
if test "$enableval" = host-only ; then
|
||||||
enableval=host
|
enableval=host
|
||||||
@ -820,6 +823,7 @@ case "$enableval" in
|
|||||||
hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
||||||
mblaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
|
mblaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
|
||||||
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
systemz) TARGETS_TO_BUILD="SystemZ $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" ;;
|
||||||
@ -833,6 +837,7 @@ case "$enableval" in
|
|||||||
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
||||||
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
||||||
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
SystemZ) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
|
||||||
*) AC_MSG_ERROR([Can not set target to build]) ;;
|
*) AC_MSG_ERROR([Can not set target to build]) ;;
|
||||||
esac ;;
|
esac ;;
|
||||||
*) AC_MSG_ERROR([Unrecognized target $a_target]) ;;
|
*) AC_MSG_ERROR([Unrecognized target $a_target]) ;;
|
||||||
|
@ -378,6 +378,8 @@ elseif (LLVM_NATIVE_ARCH MATCHES "msp430")
|
|||||||
set(LLVM_NATIVE_ARCH MSP430)
|
set(LLVM_NATIVE_ARCH MSP430)
|
||||||
elseif (LLVM_NATIVE_ARCH MATCHES "hexagon")
|
elseif (LLVM_NATIVE_ARCH MATCHES "hexagon")
|
||||||
set(LLVM_NATIVE_ARCH Hexagon)
|
set(LLVM_NATIVE_ARCH Hexagon)
|
||||||
|
elseif (LLVM_NATIVE_ARCH MATCHES "s390x")
|
||||||
|
set(LLVM_NATIVE_ARCH SystemZ)
|
||||||
else ()
|
else ()
|
||||||
message(FATAL_ERROR "Unknown architecture ${LLVM_NATIVE_ARCH}")
|
message(FATAL_ERROR "Unknown architecture ${LLVM_NATIVE_ARCH}")
|
||||||
endif ()
|
endif ()
|
||||||
|
10
configure
vendored
10
configure
vendored
@ -1445,7 +1445,7 @@ 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, arm, aarch64, mips, hexagon,
|
x86_64, sparc, powerpc, arm, aarch64, mips, hexagon,
|
||||||
xcore, msp430, nvptx, and cpp (default=all)
|
xcore, msp430, nvptx, systemz, and cpp (default=all)
|
||||||
--enable-experimental-targets
|
--enable-experimental-targets
|
||||||
Build experimental host targets: disable or
|
Build experimental host targets: disable or
|
||||||
target1,target2,... (default=disable)
|
target1,target2,... (default=disable)
|
||||||
@ -4026,6 +4026,7 @@ else
|
|||||||
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
||||||
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
||||||
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
||||||
|
s390x-*) llvm_cv_target_arch="SystemZ" ;;
|
||||||
*) llvm_cv_target_arch="Unknown" ;;
|
*) llvm_cv_target_arch="Unknown" ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
@ -4059,6 +4060,7 @@ case $host in
|
|||||||
msp430-*) host_arch="MSP430" ;;
|
msp430-*) host_arch="MSP430" ;;
|
||||||
hexagon-*) host_arch="Hexagon" ;;
|
hexagon-*) host_arch="Hexagon" ;;
|
||||||
mblaze-*) host_arch="MBlaze" ;;
|
mblaze-*) host_arch="MBlaze" ;;
|
||||||
|
s390x-*) host_arch="SystemZ" ;;
|
||||||
*) host_arch="Unknown" ;;
|
*) host_arch="Unknown" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -5398,6 +5400,8 @@ else
|
|||||||
MBlaze) TARGET_HAS_JIT=0
|
MBlaze) TARGET_HAS_JIT=0
|
||||||
;;
|
;;
|
||||||
NVPTX) TARGET_HAS_JIT=0
|
NVPTX) TARGET_HAS_JIT=0
|
||||||
|
;;
|
||||||
|
SystemZ) TARGET_HAS_JIT=1
|
||||||
;;
|
;;
|
||||||
*) TARGET_HAS_JIT=0
|
*) TARGET_HAS_JIT=0
|
||||||
;;
|
;;
|
||||||
@ -5651,6 +5655,7 @@ case "$enableval" in
|
|||||||
hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
||||||
mblaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
|
mblaze) TARGETS_TO_BUILD="MBlaze $TARGETS_TO_BUILD" ;;
|
||||||
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
systemz) TARGETS_TO_BUILD="SystemZ $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" ;;
|
||||||
@ -5664,6 +5669,7 @@ case "$enableval" in
|
|||||||
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
||||||
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
||||||
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
SystemZ) TARGETS_TO_BUILD="SystemZ $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; }; } ;;
|
||||||
@ -10529,7 +10535,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 10532 "configure"
|
#line 10538 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -759,7 +759,7 @@ The following options can be used to set or enable LLVM specific options:
|
|||||||
case. The current set of targets is:
|
case. The current set of targets is:
|
||||||
|
|
||||||
``arm, cpp, hexagon, mblaze, mips, mipsel, msp430, powerpc, ptx, sparc, spu,
|
``arm, cpp, hexagon, mblaze, mips, mipsel, msp430, powerpc, ptx, sparc, spu,
|
||||||
x86, x86_64, xcore``.
|
systemz, x86, x86_64, xcore``.
|
||||||
|
|
||||||
``--enable-doxygen``
|
``--enable-doxygen``
|
||||||
|
|
||||||
|
@ -312,6 +312,7 @@ AC_CACHE_CHECK([target architecture],[llvm_cv_target_arch],
|
|||||||
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
||||||
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
||||||
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
||||||
|
s390x-*) llvm_cv_target_arch="SystemZ" ;;
|
||||||
*) llvm_cv_target_arch="Unknown" ;;
|
*) llvm_cv_target_arch="Unknown" ;;
|
||||||
esac])
|
esac])
|
||||||
|
|
||||||
@ -482,6 +483,7 @@ else
|
|||||||
Hexagon) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
Hexagon) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
MBlaze) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
MBlaze) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
NVPTX) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
NVPTX) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
|
SystemZ) AC_SUBST(TARGET_HAS_JIT,1) ;;
|
||||||
*) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
*) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
@ -592,7 +594,7 @@ TARGETS_TO_BUILD=""
|
|||||||
AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
|
AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
|
||||||
[Build specific host targets: all or target1,target2,... Valid targets are:
|
[Build specific host targets: all or target1,target2,... Valid targets are:
|
||||||
host, x86, x86_64, sparc, powerpc, arm, mips, spu, hexagon,
|
host, x86, x86_64, sparc, powerpc, arm, mips, spu, hexagon,
|
||||||
xcore, msp430, nvptx, and cpp (default=all)]),,
|
xcore, msp430, nvptx, systemz, and cpp (default=all)]),,
|
||||||
enableval=all)
|
enableval=all)
|
||||||
if test "$enableval" = host-only ; then
|
if test "$enableval" = host-only ; then
|
||||||
enableval=host
|
enableval=host
|
||||||
@ -614,6 +616,7 @@ case "$enableval" in
|
|||||||
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" ;;
|
||||||
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
systemz) TARGETS_TO_BUILD="SystemZ $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" ;;
|
||||||
@ -627,6 +630,7 @@ case "$enableval" in
|
|||||||
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
||||||
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
||||||
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
SystemZ) TARGETS_TO_BUILD="SystemZ $TARGETS_TO_BUILD" ;;
|
||||||
*) AC_MSG_ERROR([Can not set target to build]) ;;
|
*) AC_MSG_ERROR([Can not set target to build]) ;;
|
||||||
esac ;;
|
esac ;;
|
||||||
*) AC_MSG_ERROR([Unrecognized target $a_target]) ;;
|
*) AC_MSG_ERROR([Unrecognized target $a_target]) ;;
|
||||||
|
9
projects/sample/configure
vendored
9
projects/sample/configure
vendored
@ -1406,7 +1406,7 @@ 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, arm, mips, spu, hexagon,
|
x86_64, sparc, powerpc, arm, mips, spu, hexagon,
|
||||||
xcore, msp430, nvptx, and cpp (default=all)
|
xcore, msp430, nvptx, systemz, and cpp (default=all)
|
||||||
--enable-bindings Build specific language bindings:
|
--enable-bindings Build specific language bindings:
|
||||||
all,auto,none,{binding-name} (default=auto)
|
all,auto,none,{binding-name} (default=auto)
|
||||||
--enable-libffi Check for the presence of libffi (default is NO)
|
--enable-libffi Check for the presence of libffi (default is NO)
|
||||||
@ -3852,6 +3852,7 @@ else
|
|||||||
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
hexagon-*) llvm_cv_target_arch="Hexagon" ;;
|
||||||
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
mblaze-*) llvm_cv_target_arch="MBlaze" ;;
|
||||||
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
nvptx-*) llvm_cv_target_arch="NVPTX" ;;
|
||||||
|
s390x-*) llvm_cv_target_arch="SystemZ" ;;
|
||||||
*) llvm_cv_target_arch="Unknown" ;;
|
*) llvm_cv_target_arch="Unknown" ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
@ -5115,6 +5116,8 @@ else
|
|||||||
MBlaze) TARGET_HAS_JIT=0
|
MBlaze) TARGET_HAS_JIT=0
|
||||||
;;
|
;;
|
||||||
NVPTX) TARGET_HAS_JIT=0
|
NVPTX) TARGET_HAS_JIT=0
|
||||||
|
;;
|
||||||
|
SystemZ) TARGET_HAS_JIT=1
|
||||||
;;
|
;;
|
||||||
*) TARGET_HAS_JIT=0
|
*) TARGET_HAS_JIT=0
|
||||||
;;
|
;;
|
||||||
@ -5316,6 +5319,7 @@ case "$enableval" in
|
|||||||
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" ;;
|
||||||
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
nvptx) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
systemz) TARGETS_TO_BUILD="SystemZ $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" ;;
|
||||||
@ -5329,6 +5333,7 @@ case "$enableval" in
|
|||||||
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
MSP430) TARGETS_TO_BUILD="MSP430 $TARGETS_TO_BUILD" ;;
|
||||||
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
Hexagon) TARGETS_TO_BUILD="Hexagon $TARGETS_TO_BUILD" ;;
|
||||||
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
NVPTX) TARGETS_TO_BUILD="NVPTX $TARGETS_TO_BUILD" ;;
|
||||||
|
SystemZ) TARGETS_TO_BUILD="SystemZ $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; }; } ;;
|
||||||
@ -10353,7 +10358,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 10356 "configure"
|
#line 10361 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
Loading…
Reference in New Issue
Block a user