mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
Support for experimental targets
Added LLVM_EXPERIMENTAL_TARGETS_TO_BUILD in CMake and --enable-experimental-targets in configure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161561 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -717,6 +717,17 @@ case "$enableval" in
|
||||
done
|
||||
;;
|
||||
esac
|
||||
|
||||
AC_ARG_ENABLE([experimental-targets],AS_HELP_STRING([--enable-experimental-targets],
|
||||
[Build experimental host targets: disable or target1,target2,...
|
||||
(default=disable)]),,
|
||||
enableval=disable)
|
||||
|
||||
if test ${enableval} != "disable"
|
||||
then
|
||||
TARGETS_TO_BUILD="$enableval $TARGETS_TO_BUILD"
|
||||
fi
|
||||
|
||||
AC_SUBST(TARGETS_TO_BUILD,$TARGETS_TO_BUILD)
|
||||
|
||||
dnl Determine whether we are building LLVM support for the native architecture.
|
||||
|
Reference in New Issue
Block a user