소스 검색

Be sure to print linker output on link failure

default_compile_flags
vector-of-bool 5 년 전
부모
커밋
c0282d3881
1개의 변경된 파일7개의 추가작업 그리고 6개의 파일을 삭제
  1. +7
    -6
      src/dds/build/plan/exe.cpp

+ 7
- 6
src/dds/build/plan/exe.cpp 파일 보기

@@ -55,12 +55,13 @@ void link_executable_plan::link(build_env_ref env, const library_plan& lib) cons

// Check and throw if errant
if (!proc_res.okay()) {
throw_external_error<
errc::link_failure>("Failed to link executable [{}]. Link command was [{}]",
spec.output.string(),
quote_command(link_command),
proc_res.retc,
proc_res.output);
throw_external_error<errc::link_failure>(
"Failed to link executable [{}]. Link command was [{}] [Exited {}], produced "
"output:\n{}",
spec.output.string(),
quote_command(link_command),
proc_res.retc,
proc_res.output);
}
}


Loading…
취소
저장