Bläddra i källkod

Be sure to print linker output on link failure

default_compile_flags
vector-of-bool 6 år sedan
förälder
incheckning
c0282d3881
1 ändrade filer med 7 tillägg och 6 borttagningar
  1. +7
    -6
      src/dds/build/plan/exe.cpp

+ 7
- 6
src/dds/build/plan/exe.cpp Visa fil



// Check and throw if errant // Check and throw if errant
if (!proc_res.okay()) { 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);
} }
} }



Laddar…
Avbryt
Spara