We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eca712 commit 5837156Copy full SHA for 5837156
foreign_cc/meson.bzl
@@ -81,6 +81,8 @@ def _create_meson_script(configureParameters):
81
script.append("##export_var## CC {}".format(_absolutize(ctx.workspace_name, tools.cc)))
82
if " " not in tools.cxx:
83
script.append("##export_var## CXX {}".format(_absolutize(ctx.workspace_name, tools.cxx)))
84
+ if " " not in tools.cxx_linker_static:
85
+ script.append("##export_var## AR {}".format(_absolutize(ctx.workspace_name, tools.cxx_linker_static)))
86
87
copts = flags.cc
88
cxxopts = flags.cxx
0 commit comments