diff options
Diffstat (limited to 'Library/ENV')
| -rwxr-xr-x | Library/ENV/4.3/cc | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc index 5e1ef96b3..a774fa9fd 100755 --- a/Library/ENV/4.3/cc +++ b/Library/ENV/4.3/cc @@ -85,11 +85,15 @@ class Cmd else args = refurbished_args end - if tool != 'ld' - args << "--sysroot=#{sdkroot}" - else - args << "-syslibroot" << sdkroot - end if nclt? + + if nclt? + if tool != 'ld' + args << "--sysroot=#{sdkroot}" + else + args << "-syslibroot" << sdkroot + end + end + allflags = case mode when :ccld cflags + args + cppflags + ldflags |
