Skip to content
Snippets Groups Projects
Commit cb7caac0 authored by Paul Seidler's avatar Paul Seidler Committed by Carl Worth
Browse files

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: default avatarMatt Turner <mattst88@gmail.com>
(cherry picked from commit 1cdeeef6)
parent 0461451d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment