This commit is contained in:
parent
0ab30a1d81
commit
f90c633898
6 changed files with 9 additions and 10 deletions
|
|
@ -26,9 +26,8 @@ int main() {
|
|||
return 1;
|
||||
}
|
||||
|
||||
fs::path buildDir = work / "build" / "hello-mod-x86_64-pc-linux-gnu-native";
|
||||
fs::path greeterObj = buildDir / "Greeter.o";
|
||||
fs::path mainObj = buildDir / "main_impl.o";
|
||||
fs::path greeterObj = cfg.BuildDir() / "Greeter.o";
|
||||
fs::path mainObj = cfg.BuildDir() / "main_impl.o";
|
||||
if (!fs::exists(greeterObj) || !fs::exists(mainObj)) {
|
||||
std::println(std::cerr, "expected .o files missing after cold build");
|
||||
return 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue