Compare commits

..

1 Commits

Author SHA1 Message Date
62c24c3e2c wip
Some checks failed
CI / release (ubuntu-latest) (pull_request) Has been cancelled
CI / ci (Debug, ubuntu-latest) (pull_request) Has been cancelled
CI / ci (Release, ubuntu-latest) (pull_request) Has been cancelled
2025-06-22 10:13:07 -06:00

View File

@ -604,6 +604,8 @@ void entry_point(Slice<char* const> arguments, Slice<char* const> envp)
bool is_host_cpu_model_array[] = {true, false};
for (auto name: names)
{
for (auto is_host_cpu_model : is_host_cpu_model_array)
{
for (BuildMode build_mode = BuildMode::debug_none; build_mode < BuildMode::count; build_mode = (BuildMode)((backing_type(BuildMode))build_mode + 1))
{
@ -618,6 +620,7 @@ void entry_point(Slice<char* const> arguments, Slice<char* const> envp)
.relative_file_path = relative_file_path,
.build_mode = build_mode,
.has_debug_info = has_debug_info,
.host_cpu_model = is_host_cpu_model,
.silent = true,
});
@ -642,6 +645,7 @@ void entry_point(Slice<char* const> arguments, Slice<char* const> envp)
}
}
}
}
BuildMode compiler_build_mode = BuildMode::debug_none;
bool compiler_has_debug_info = true;