mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Avoid hard coded GCC binary paths
In order to build a tool chain with Ada support a native GCC with Ada support of the same version as the cross compiler is required. The RSB used hard coded paths for the gcc and g++ programs. This forced the RSB user to change the main GCC installation of the machine to build a particular RTEMS tool chain. This is undesired/infeasible in most situations. Close #3284.
This commit is contained in:
parent
6d9c77c77d
commit
2a5c9da489
@ -138,7 +138,7 @@ __bash: exe, optional, '/bin/bash'
|
||||
__bison: exe, required, '/usr/bin/bison'
|
||||
__bzip2: exe, required, '/usr/bin/bzip2'
|
||||
__cat: exe, required, '/bin/cat'
|
||||
__cc: exe, required, '/usr/bin/gcc'
|
||||
__cc: exe, required, 'gcc'
|
||||
__chgrp: exe, required, '/usr/bin/chgrp'
|
||||
__chmod: exe, required, '/bin/chmod'
|
||||
__chown: exe, required, '/usr/sbin/chown'
|
||||
@ -146,7 +146,7 @@ __cp: exe, required, '/bin/cp'
|
||||
__cpp: exe, none, '%{__cc} -E'
|
||||
__cvs: exe, optional, '/usr/bin/cvs'
|
||||
__cvs_z: none, none, '%{__cvs} -z 9'
|
||||
__cxx: exe, required, '/usr/bin/g++'
|
||||
__cxx: exe, required, 'g++'
|
||||
__flex: exe, required, '/usr/bin/flex'
|
||||
__git: exe, required, '/usr/bin/git'
|
||||
__grep: exe, required, '/usr/bin/grep'
|
||||
|
Loading…
x
Reference in New Issue
Block a user