mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-30 09:38:10 +02:00
While linux uses .so as a default extension for shared libraries that is not the case for other platforms. The loader in libGL (and others) assumes that the dri module will always have a .so extension, thus it will fail to load on the affected platforms. Spotted-by: Jon TURNEY <jon.turney@dronecode.org.uk> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
143 lines
3.6 KiB
PHP
143 lines
3.6 KiB
PHP
GALLIUM_CFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
$(DEFINES)
|
|
|
|
# src/gallium/auxiliary must appear before src/gallium/drivers
|
|
# because there are stupidly two rbug_context.h files in
|
|
# different directories, and which one is included by the
|
|
# preprocessor is determined by the ordering of the -I flags.
|
|
GALLIUM_DRIVER_CFLAGS = \
|
|
-I$(srcdir)/include \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
|
$(DEFINES) \
|
|
$(VISIBILITY_CFLAGS)
|
|
|
|
GALLIUM_DRIVER_CXXFLAGS = \
|
|
-I$(srcdir)/include \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
|
$(DEFINES) \
|
|
$(VISIBILITY_CXXFLAGS)
|
|
|
|
GALLIUM_DRI_CFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
|
-I$(top_srcdir)/src/gallium/winsys \
|
|
-I$(top_srcdir)/src/mesa \
|
|
-I$(top_srcdir)/src/mapi \
|
|
$(DEFINES) \
|
|
$(PTHREAD_CFLAGS) \
|
|
$(LIBDRM_CFLAGS) \
|
|
$(VISIBILITY_CFLAGS)
|
|
|
|
GALLIUM_VIDEO_CFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
|
-I$(top_srcdir)/src/gallium/winsys \
|
|
$(DEFINES) \
|
|
$(PTHREAD_CFLAGS) \
|
|
$(LIBDRM_CFLAGS) \
|
|
$(VISIBILITY_CFLAGS)
|
|
|
|
|
|
DRI_VERSION_SCRIPT ?= $(top_srcdir)/src/gallium/state_trackers/dri/dri.link
|
|
|
|
GALLIUM_DRI_LINKER_FLAGS = \
|
|
-shared \
|
|
-shrext .so \
|
|
-module \
|
|
-avoid-version \
|
|
$(GC_SECTIONS) \
|
|
-Wl,--version-script=$(DRI_VERSION_SCRIPT)
|
|
|
|
GALLIUM_VDPAU_LINKER_FLAGS = \
|
|
-shared \
|
|
-module \
|
|
-no-undefined \
|
|
-version-number $(VDPAU_MAJOR):$(VDPAU_MINOR) \
|
|
-export-symbols-regex $(VDPAU_EXPORTS) \
|
|
$(GC_SECTIONS) \
|
|
$(LD_NO_UNDEFINED)
|
|
|
|
GALLIUM_XVMC_LINKER_FLAGS = \
|
|
-shared \
|
|
-module \
|
|
-no-undefined \
|
|
-version-number $(XVMC_MAJOR):$(XVMC_MINOR) \
|
|
-export-symbols-regex '^XvMC' \
|
|
$(GC_SECTIONS) \
|
|
$(LD_NO_UNDEFINED)
|
|
|
|
GALLIUM_OMX_LINKER_FLAGS = \
|
|
-shared \
|
|
-module \
|
|
-no-undefined \
|
|
-export-symbols-regex $(EXPORTS) \
|
|
$(GC_SECTIONS) \
|
|
$(LD_NO_UNDEFINED)
|
|
|
|
GALLIUM_COMMON_LIB_DEPS = \
|
|
-lm \
|
|
$(CLOCK_LIB) \
|
|
$(PTHREAD_LIBS) \
|
|
$(DLOPEN_LIBS)
|
|
|
|
GALLIUM_DRI_LIB_DEPS = \
|
|
$(top_builddir)/src/mesa/libmesagallium.la \
|
|
$(top_builddir)/src/gallium/auxiliary/libgallium.la \
|
|
$(SELINUX_LIBS) \
|
|
$(LIBDRM_LIBS) \
|
|
$(EXPAT_LIBS) \
|
|
$(GALLIUM_COMMON_LIB_DEPS)
|
|
|
|
GALLIUM_VDPAU_LIB_DEPS = \
|
|
$(top_builddir)/src/gallium/auxiliary/libgallium.la \
|
|
$(top_builddir)/src/gallium/state_trackers/vdpau/libvdpautracker.la \
|
|
$(VDPAU_LIBS) \
|
|
$(LIBDRM_LIBS) \
|
|
$(GALLIUM_COMMON_LIB_DEPS)
|
|
|
|
GALLIUM_XVMC_LIB_DEPS = \
|
|
$(top_builddir)/src/gallium/auxiliary/libgallium.la \
|
|
$(top_builddir)/src/gallium/state_trackers/xvmc/libxvmctracker.la \
|
|
$(XVMC_LIBS) \
|
|
$(LIBDRM_LIBS) \
|
|
$(GALLIUM_COMMON_LIB_DEPS)
|
|
|
|
GALLIUM_OMX_LIB_DEPS = \
|
|
$(top_builddir)/src/gallium/auxiliary/libgallium.la \
|
|
$(top_builddir)/src/gallium/state_trackers/omx/libomxtracker.la \
|
|
$(OMX_LIBS) \
|
|
$(GALLIUM_COMMON_LIB_DEPS)
|
|
|
|
GALLIUM_WINSYS_CFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
$(DEFINES) \
|
|
$(VISIBILITY_CFLAGS)
|
|
|
|
if HAVE_MESA_LLVM
|
|
|
|
GALLIUM_DRI_LINKER_FLAGS += $(LLVM_LDFLAGS)
|
|
GALLIUM_VDPAU_LINKER_FLAGS += $(LLVM_LDFLAGS)
|
|
GALLIUM_XVMC_LINKER_FLAGS += $(LLVM_LDFLAGS)
|
|
GALLIUM_OMX_LINKER_FLAGS += $(LLVM_LDFLAGS)
|
|
|
|
GALLIUM_DRI_LIB_DEPS += $(LLVM_LIBS)
|
|
GALLIUM_VDPAU_LIB_DEPS += $(LLVM_LIBS)
|
|
GALLIUM_XVMC_LIB_DEPS += $(LLVM_LIBS)
|
|
GALLIUM_OMX_LIB_DEPS += $(LLVM_LIBS)
|
|
|
|
endif
|