diff --git a/tools/gcc.py b/tools/gcc.py index 11751ebeecaf4929c6ae465310087e5f80b1fccc..0b5b2c3a2013263a6b345e479c8dd979a5c0ddee 100644 --- a/tools/gcc.py +++ b/tools/gcc.py @@ -32,7 +32,12 @@ def GetGCCRoot(rtconfig): if prefix.endswith('-'): prefix = prefix[:-1] - root_path = os.path.join(exec_path, '..', prefix) + if exec_path == '/usr/bin': + root_path = os.path.join('/usr/lib', prefix) + print(root_path) + else: + root_path = os.path.join(exec_path, '..', prefix) + print(root_path) return root_path