We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d10e913 commit 6699f00Copy full SHA for 6699f00
1 file changed
compiler/make/objs-to-k2-component-target.h
@@ -43,7 +43,8 @@ class Objs2K2ComponentTarget : public Target {
43
public:
44
std::string get_cmd() final {
45
std::stringstream ss;
46
- ss << settings->cxx.get() << additional_flags() << " -stdlib=libc++ -static-libstdc++ -shared -o " << target() << " ";
+ ss << settings->cxx.get() << " " << settings->cxx_toolchain_option.get() << " " << additional_flags() << " -stdlib=libc++ -static-libstdc++ -shared -o "
47
+ << target() << " ";
48
49
for (size_t i = 0; i + 1 < deps.size(); ++i) {
50
ss << deps[i]->get_name() << " ";
0 commit comments