浏览代码

always extend link_exe with link flags

otherwise custom link-exe templates do not work
main
John Robinson 3 年前
父节点
当前提交
9666b2b468
找不到此签名对应的密钥
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/dds/toolchain/from_json.cpp

+ 1
- 1
src/dds/toolchain/from_json.cpp 查看文件

@@ -726,9 +726,9 @@ toolchain dds::parse_toolchain_json_data(const json5::data& dat, std::string_vie
assert(false && "No link-exe command");
std::terminate();
}
extend(ret, get_link_flags());
return ret;
});
extend(tc.link_exe, get_link_flags());

tc.tty_flags = read_opt(tty_flags, [&]() -> string_seq {
if (!compiler_id) {

正在加载...
取消
保存