summaryrefslogtreecommitdiffstats
path: root/src/mesa/Makefile.am
diff options
context:
space:
mode:
authorPaul Seidler <sepek@exherbo.org>2014-01-21 22:44:37 +0100
committerMatt Turner <mattst88@gmail.com>2014-02-01 15:01:06 -0800
commit1cdeeef6c400979a0497afde52bf351a623a934f (patch)
tree3b386616fad486dc8c93fde74e74cafe201a7485 /src/mesa/Makefile.am
parentc849ecc19a4cb2951a8b9e8d257632f492ab2517 (diff)
downloadexternal_mesa3d-1cdeeef6c400979a0497afde52bf351a623a934f.zip
external_mesa3d-1cdeeef6c400979a0497afde52bf351a623a934f.tar.gz
external_mesa3d-1cdeeef6c400979a0497afde52bf351a623a934f.tar.bz2
build: move ARCH_LIBS definition outside of ASM definition
_mesa_streaming_load_memcpy is also needed even if assembling is disabled Cc: "10.0" <mesa-stable@lists.freedesktop.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/Makefile.am')
-rw-r--r--src/mesa/Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am
index cb038a5..ffe6599 100644
--- a/src/mesa/Makefile.am
+++ b/src/mesa/Makefile.am
@@ -95,6 +95,12 @@ AM_CPPFLAGS = $(DEFINES) $(INCLUDE_DIRS)
AM_CFLAGS = $(LLVM_CFLAGS) $(VISIBILITY_CFLAGS)
AM_CXXFLAGS = $(LLVM_CFLAGS) $(VISIBILITY_CXXFLAGS)
+ARCH_LIBS =
+
+if SSE41_SUPPORTED
+ARCH_LIBS += libmesa_sse41.la
+endif
+
MESA_ASM_FILES_FOR_ARCH =
if HAVE_X86_ASM
@@ -103,12 +109,6 @@ noinst_PROGRAMS = gen_matypes
gen_matypes_SOURCES = x86/gen_matypes.c
BUILT_SOURCES += matypes.h
-ARCH_LIBS =
-
-if SSE41_SUPPORTED
-ARCH_LIBS += libmesa_sse41.la
-endif
-
if HAVE_X86_64_ASM
MESA_ASM_FILES_FOR_ARCH += $(X86_64_FILES)
AM_CPPFLAGS += -I$(builddir)/x86-64 -I$(srcdir)/x86-64