forked from lix-project/lix
Remove useless debug statements
We haven't parsed the '-v' command line flags yet when this code executes, so we can't actually get debug output here.
This commit is contained in:
parent
ddd5503950
commit
285277a61a
|
@ -154,13 +154,9 @@ StringSet Settings::getDefaultExtraPlatforms()
|
|||
// machines. Note that we can’t force processes from executing
|
||||
// x86_64 in aarch64 environments or vice versa since they can
|
||||
// always exec with their own binary preferences.
|
||||
if (std::string{SYSTEM} == "aarch64-darwin") {
|
||||
if (runProgram(RunOptions {.program = "arch", .args = {"-arch", "x86_64", "/usr/bin/true"}, .mergeStderrToStdout = true}).first == 0) {
|
||||
debug("Rosetta detected");
|
||||
extraPlatforms.insert("x86_64-darwin");
|
||||
} else
|
||||
debug("Rosetta not detected");
|
||||
}
|
||||
if (std::string{SYSTEM} == "aarch64-darwin" &&
|
||||
runProgram(RunOptions {.program = "arch", .args = {"-arch", "x86_64", "/usr/bin/true"}, .mergeStderrToStdout = true}).first == 0)
|
||||
extraPlatforms.insert("x86_64-darwin");
|
||||
#endif
|
||||
|
||||
return extraPlatforms;
|
||||
|
|
Loading…
Reference in a new issue