aboutsummaryrefslogtreecommitdiff
path: root/compiler_wrapper/clang_flags.go
diff options
context:
space:
mode:
Diffstat (limited to 'compiler_wrapper/clang_flags.go')
-rw-r--r--compiler_wrapper/clang_flags.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler_wrapper/clang_flags.go b/compiler_wrapper/clang_flags.go
index 8b76e965..1f0e2231 100644
--- a/compiler_wrapper/clang_flags.go
+++ b/compiler_wrapper/clang_flags.go
@@ -172,7 +172,8 @@ func getClangResourceDir(env env, clangPath string) (string, error) {
"failed to call clang to read the resouce-dir: %#v",
readResourceCmd)
}
- return stdoutBuffer.String(), nil
+ resourceDir := strings.TrimRight(stdoutBuffer.String(), "\n")
+ return resourceDir, nil
}
// Return the a directory which contains an 'ld' that gcc is using.