소스 검색

- remove ld.so.conf parsing from makefiles: this was probably done because we
used to completely replace the default linker script under Linux (which
also includes search directories), and it's wrong in case of
cross-compiling

git-svn-id: trunk@44860 -

Jonas Maebe 5 년 전
부모
커밋
f81dac4f6f
2개의 변경된 파일209개의 추가작업 그리고 226개의 파일을 삭제
  1. 207 219
      utils/fpcm/fpcmake.inc
  2. 2 7
      utils/fpcm/fpcmake.ini

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 207 - 219
utils/fpcm/fpcmake.inc


+ 2 - 7
utils/fpcm/fpcmake.ini

@@ -850,18 +850,13 @@ ifneq ($(CROSSGCC),)
 GCCLIBDIR:=$(shell dirname `$(CROSSGCC) -print-libgcc-file-name`)
 endif
 endif
-
-# Other libraries from ld.so.conf
-ifndef OTHERLIBDIR
-OTHERLIBDIR:=$(shell grep -v "^\#" /etc/ld.so.conf | awk '{ ORS=" "; print $1 }')
-endif
 endif
 
 ifdef inUnix
 ifeq ($(OS_SOURCE),netbsd)
-OTHERLIBDIR+=/usr/pkg/lib
+OTHERLIBDIR:=/usr/pkg/lib
 endif
-export GCCLIBDIR OTHERLIB
+export GCCLIBDIR OTHERLIBDIR
 endif
 
 

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.