mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-02 15:20:26 +01:00
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>
(cherry picked from commit 1cdeeef6c4)
This commit is contained in:
parent
0461451dcd
commit
cb7caac053
1 changed files with 6 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue