Commit e4a38086 authored by Ian Lance Taylor's avatar Ian Lance Taylor

cmd/dist: correct default C++ compiler when using gcc

Fixes #22609

Change-Id: Ic948345e7d1623a7defee6a6493eb81fe7393111
Reviewed-on: https://go-review.googlesource.com/76396
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: default avatarDavid Crawshaw <crawshaw@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 0c0aed3c
...@@ -171,12 +171,12 @@ func xinit() { ...@@ -171,12 +171,12 @@ func xinit() {
gogcflags = os.Getenv("BOOT_GO_GCFLAGS") gogcflags = os.Getenv("BOOT_GO_GCFLAGS")
cc := "gcc" cc, cxx := "gcc", "g++"
if defaultclang { if defaultclang {
cc = "clang" cc, cxx = "clang", "clang++"
} }
defaultcc = compilerEnv("CC", cc) defaultcc = compilerEnv("CC", cc)
defaultcxx = compilerEnv("CXX", cc+"++") defaultcxx = compilerEnv("CXX", cxx)
defaultcflags = os.Getenv("CFLAGS") defaultcflags = os.Getenv("CFLAGS")
defaultldflags = os.Getenv("LDFLAGS") defaultldflags = os.Getenv("LDFLAGS")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment