Meta: Use the host CXX tool for linking as well

For example, if you set host_cxx=clang in your args.gn, we would still
use GCC for linking. This matches the CMake build now.
This commit is contained in:
Timothy Flynn 2024-06-02 15:16:48 -04:00 committed by Tim Flynn
parent 847ee6e266
commit 951aa44f87

View file

@ -190,6 +190,7 @@ unix_toolchain("unix") {
current_os = host_os
cc = host_cc
cxx = host_cxx
ld = host_cxx
}
}