mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
1,013 B
Diff
35 lines
1,013 B
Diff
From 6c4887f62dcb56eca5fd447f72c16f61628fce54 Mon Sep 17 00:00:00 2001
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
Date: Mon, 4 Feb 2019 17:54:45 -0700
|
|
Subject: [PATCH] Rip out VC4 forced NEON
|
|
|
|
Breaks with distro-supplied CFLAGS.
|
|
---
|
|
src/gallium/drivers/vc4/meson.build | 11 -----------
|
|
1 file changed, 11 deletions(-)
|
|
|
|
diff --git a/src/gallium/drivers/vc4/meson.build b/src/gallium/drivers/vc4/meson.build
|
|
index 0d7a03cd242..dbf116c2ce1 100644
|
|
--- a/src/gallium/drivers/vc4/meson.build
|
|
+++ b/src/gallium/drivers/vc4/meson.build
|
|
@@ -84,17 +84,6 @@ files_libvc4 = files(
|
|
vc4_c_args = []
|
|
|
|
libvc4_neon = []
|
|
-if host_machine.cpu_family() == 'arm'
|
|
- libvc4_neon = static_library(
|
|
- 'vc4_neon',
|
|
- 'vc4_tiling_lt_neon.c',
|
|
- include_directories : [
|
|
- inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom
|
|
- ],
|
|
- c_args : '-mfpu=neon',
|
|
- )
|
|
- vc4_c_args += '-DUSE_ARM_ASM'
|
|
-endif
|
|
|
|
dep_simpenrose = dependency('simpenrose', required : false)
|
|
if dep_simpenrose.found()
|
|
--
|
|
2.20.1
|
|
|