mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
diff -Naur mesa-7.1rc1-20080706.orig/bin/mklib mesa-7.1rc1-20080706/bin/mklib
|
|
--- mesa-7.1rc1-20080706.orig/bin/mklib 2008-07-06 14:09:54.000000000 +0200
|
|
+++ mesa-7.1rc1-20080706/bin/mklib 2008-07-06 14:11:03.000000000 +0200
|
|
@@ -211,9 +211,9 @@
|
|
if [ "x$LINK" = "x" ] ; then
|
|
# -linker was not specified so set default link command now
|
|
if [ $CPLUSPLUS = 1 ] ; then
|
|
- LINK=g++
|
|
+ LINK=$CXX
|
|
else
|
|
- LINK=gcc
|
|
+ LINK=$CC
|
|
fi
|
|
fi
|
|
|
|
diff -Naur mesa-7.1rc1-20080706.orig/configs/linux-dri mesa-7.1rc1-20080706/configs/linux-dri
|
|
--- mesa-7.1rc1-20080706.orig/configs/linux-dri 2008-07-06 14:09:54.000000000 +0200
|
|
+++ mesa-7.1rc1-20080706/configs/linux-dri 2008-07-06 14:16:00.000000000 +0200
|
|
@@ -14,6 +14,7 @@
|
|
#MKDEP_OPTIONS = -MF depend
|
|
|
|
OPT_FLAGS = -O -g
|
|
+HOST_OPT_FLAGS = $(OPT_FLAGS)
|
|
PIC_FLAGS = -fPIC
|
|
|
|
# Add '-DGLX_USE_TLS' to ARCH_FLAGS to enable TLS support.
|
|
@@ -29,6 +30,8 @@
|
|
|
|
CFLAGS = -Wall -Wmissing-prototypes -std=c99 -ffast-math \
|
|
$(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) $(ASM_FLAGS)
|
|
+HOST_CFLAGS = -Wall -Wmissing-prototypes -std=c99 -ffast-math \
|
|
+ $(HOST_OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES) $(ASM_FLAGS)
|
|
|
|
CXXFLAGS = -Wall $(OPT_FLAGS) $(PIC_FLAGS) $(ARCH_FLAGS) $(DEFINES)
|
|
|
|
diff -Naur mesa-7.1rc1-20080706.orig/src/mesa/x86/Makefile mesa-7.1rc1-20080706/src/mesa/x86/Makefile
|
|
--- mesa-7.1rc1-20080706.orig/src/mesa/x86/Makefile 2008-07-06 14:09:54.000000000 +0200
|
|
+++ mesa-7.1rc1-20080706/src/mesa/x86/Makefile 2008-07-06 14:15:00.000000000 +0200
|
|
@@ -21,7 +21,7 @@
|
|
|
|
|
|
gen_matypes: gen_matypes.c
|
|
- $(CC) $(INCLUDE_DIRS) $(CFLAGS) gen_matypes.c -o gen_matypes
|
|
+ $(HOST_CC) $(INCLUDE_DIRS) $(HOST_CFLAGS) gen_matypes.c -o gen_matypes
|
|
|
|
# need some special rules here, unfortunately
|
|
matypes.h: ../main/mtypes.h ../tnl/t_context.h gen_matypes
|