pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

MesaLib: enable llvmpipe on aarch64, probably useful



Module Name:	pkgsrc-wip
Committed By:	nia <nia%netbsd.org@localhost>
Pushed By:	nee
Date:		Thu Aug 22 15:06:40 2019 +0100
Changeset:	df2947516f8c5bd10db45c3968d1d015e9bc17fc

Modified Files:
	MesaLib/options.mk

Log Message:
MesaLib: enable llvmpipe on aarch64, probably useful

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=df2947516f8c5bd10db45c3968d1d015e9bc17fc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 MesaLib/options.mk | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diffs:
diff --git a/MesaLib/options.mk b/MesaLib/options.mk
index d85638cb1d..b4e3339dfa 100644
--- a/MesaLib/options.mk
+++ b/MesaLib/options.mk
@@ -23,8 +23,11 @@ PKG_OPTIONS_LEGACY_OPTS+=	xvmc:gallium-xvmc
 
 # The LLVM option enables JIT accelerated software rendering and
 # is also required to support the latest RADEON GPUs, so enable it
-# by default on platforms where such GPUs might be encountered.
-.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64") && \
+# by default on platforms where such GPUs might be encountered
+# or accelerated software rendering might be useful.
+.if (${MACHINE_ARCH} == "i386" || \
+     ${MACHINE_ARCH} == "x86_64" || \
+     ${MACHINE_ARCH} == "aarch64") && \
 	${OPSYS} != "SunOS" && ${OPSYS} != "Darwin"
 PKG_SUGGESTED_OPTIONS+=		llvm
 .endif


Home | Main Index | Thread Index | Old Index