1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-30 01:15:52 +00:00

Restrict LLVM to i386 and amd64 since it doesn't build on sparc64, ia64 and

probably on ppc

Submitted by:	Anton Shterenlikht <mexas@bristol.ac.uk>
Feature safe:	yes
This commit is contained in:
Renato Botelho 2011-01-26 11:04:40 +00:00
parent d10bd24abb
commit 98c5b4f39f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=268252

View File

@ -140,7 +140,7 @@ USE_ICONV= yes
CONFIGURE_ARGS+=--without-iconv
.endif
.if defined(WITH_LLVM) && ${ARCH} != "sparc64"
.if defined(WITH_LLVM) && ( ${ARCH} == "i386" || ${ARCH} == "amd64" )
CONFIGURE_ARGS+=--enable-llvm
USE_GMAKE= yes
. if defined(WITH_TESTS)