gcc: install libs into /lib and not /lib64 on x86_64.
This is to mimic what debian and derivatives do. --HG-- extra : convert_revision : 02e15adf1f06ba45f14f06aad9c28ac4553c8621
This commit is contained in:
parent
a193527922
commit
3b5c4b506d
2 changed files with 20 additions and 2 deletions
16
templates/gcc-fix-amd64.diff
Normal file
16
templates/gcc-fix-amd64.diff
Normal file
|
@ -0,0 +1,16 @@
|
|||
Override default to match what other debian derivatives do.
|
||||
|
||||
Rather than having lib being a link of lib64, do the the contrary:
|
||||
use lib and make lib64 a link of it.
|
||||
|
||||
--- gcc/config/i386/t-linux64.orig 2008-10-22 03:33:48.513859286 +0200
|
||||
+++ gcc/config/i386/t-linux64 2008-10-22 03:34:27.928844912 +0200
|
||||
@@ -13,7 +13,7 @@
|
||||
|
||||
MULTILIB_OPTIONS = m64/m32
|
||||
MULTILIB_DIRNAMES = 64 32
|
||||
-MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)
|
||||
+MULTILIB_OSDIRNAMES = ../lib $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)
|
||||
|
||||
LIBGCC = stmp-multilib
|
||||
INSTALL_LIBGCC = install-multilib
|
Loading…
Add table
Add a link
Reference in a new issue