Changeset View
Changeset View
Standalone View
Standalone View
devel/llvm16/Makefile
| Show First 20 Lines • Show All 324 Lines • ▼ Show 20 Lines | |||||
| .if defined(LLVM_ENABLE_PROJECTS) | .if defined(LLVM_ENABLE_PROJECTS) | ||||
| CMAKE_ARGS+= -DLLVM_ENABLE_PROJECTS="${LLVM_ENABLE_PROJECTS:ts;}" | CMAKE_ARGS+= -DLLVM_ENABLE_PROJECTS="${LLVM_ENABLE_PROJECTS:ts;}" | ||||
| .endif | .endif | ||||
| .include <bsd.port.pre.mk> | .include <bsd.port.pre.mk> | ||||
| .include "${.CURDIR}/Makefile.COMMANDS" | .include "${.CURDIR}/Makefile.COMMANDS" | ||||
| .include "${.CURDIR}/Makefile.MAN1SRCS" | .include "${.CURDIR}/Makefile.MAN1SRCS" | ||||
| _FREEBSD_BACKENDS= AArch64 ARM Mips PowerPC RISCV X86 | _FREEBSD_BACKENDS= AArch64 ARM PowerPC RISCV X86 | ||||
| FREEBSD_BACKENDS= ${_FREEBSD_BACKENDS} | FREEBSD_BACKENDS= ${_FREEBSD_BACKENDS} | ||||
| .if ${ARCH} == amd64 | .if ${ARCH} == amd64 | ||||
| _NATIVE_BACKENDS= X86 | _NATIVE_BACKENDS= X86 | ||||
| .elif ${ARCH} == aarch64 | .elif ${ARCH} == aarch64 | ||||
| _NATIVE_BACKENDS= AArch64 ARM | _NATIVE_BACKENDS= AArch64 ARM | ||||
| .elif ${ARCH:Marmv*} | .elif ${ARCH:Marmv*} | ||||
| _NATIVE_BACKENDS= ARM | _NATIVE_BACKENDS= ARM | ||||
| .elif ${ARCH} == i386 | .elif ${ARCH} == i386 | ||||
| _NATIVE_BACKENDS= X86 | _NATIVE_BACKENDS= X86 | ||||
| .elif ${ARCH:Mmips*} | |||||
| _NATIVE_BACKENDS= Mips | |||||
| .elif ${ARCH:Mpowerpc*} | .elif ${ARCH:Mpowerpc*} | ||||
| _NATIVE_BACKENDS= PowerPC | _NATIVE_BACKENDS= PowerPC | ||||
| .elif ${ARCH:Mriscv*} | .elif ${ARCH:Mriscv*} | ||||
| _NATIVE_BACKENDS= RISCV | _NATIVE_BACKENDS= RISCV | ||||
| .endif | .endif | ||||
| NATIVE_BACKENDS= ${_NATIVE_BACKENDS} | NATIVE_BACKENDS= ${_NATIVE_BACKENDS} | ||||
| .if ${PORT_OPTIONS:MBE_AMDGPU} | .if ${PORT_OPTIONS:MBE_AMDGPU} | ||||
| FREEBSD_BACKENDS+= AMDGPU | FREEBSD_BACKENDS+= AMDGPU | ||||
| ▲ Show 20 Lines • Show All 276 Lines • Show Last 20 Lines | |||||