diff --git a/Library/ENV/4.3/cc b/Library/ENV/4.3/cc index 5e1ef96b3d..a774fa9fda 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