We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36d60fe commit 741ab82Copy full SHA for 741ab82
src/goto-cc/compile.cpp
@@ -420,11 +420,13 @@ bool compilet::compile()
420
421
std::string cfn;
422
423
+ debug() << "output_file_object = " << output_file_object << eom;
424
if(output_file_object=="")
425
{
426
const std::string file_name_with_obj_ext =
427
get_base_name(file_name, true) + "." + object_file_extension;
428
429
+ debug() << "output_directory_object = " << output_directory_object << eom;
430
if(!output_directory_object.empty())
431
cfn = concat_dir_file(output_directory_object, file_name_with_obj_ext);
432
else
0 commit comments