summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-12 08:15:14 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-12 08:15:14 +0200
commit2be9a150bb742987330c6de4dac23d4d2efb1ebe (patch)
tree06155b0e26fcc2a9fc2d8e684155f82ded3d1552
parent672541352e91ce4e2333d45dd8b3808d2d379466 (diff)
fix(cxxdrv): The Compiler driver shall take multiple files, instead of0.0.1e2
one. Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
-rw-r--r--dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
index 62d51aa..ace6d17 100644
--- a/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
+++ b/dev/LibCompiler/src/CPlusPlusCompilerAMD64.cc
@@ -899,8 +899,7 @@ LIBCOMPILER_MODULE(CompilerCPlusPlusAMD64) {
return kExitNO;
}
- auto ret = kFactory.Compile(argv_i, kMachine);
- return ret;
+ kFactory.Compile(argv_i, kMachine);
}
return kExitNO;