Compare commits

..

1 Commits

Author SHA1 Message Date
a0334e50b4 wip
Some checks failed
CI / ci (Release, ubuntu-latest) (pull_request) Successful in 34m59s
CI / release (ubuntu-latest) (pull_request) Has been cancelled
CI / ci (Debug, ubuntu-latest) (pull_request) Has been cancelled
2025-06-22 10:40:55 -06:00

View File

@ -604,8 +604,6 @@ 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))
{
@ -620,7 +618,6 @@ 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,
});
@ -645,7 +642,6 @@ void entry_point(Slice<char* const> arguments, Slice<char* const> envp)
}
}
}
}
BuildMode compiler_build_mode = BuildMode::debug_none;
bool compiler_has_debug_info = true;