mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Phrasing!
This commit is contained in:
committed by
flysand7
parent
9ecc378803
commit
d44f8c377a
+2
-2
@@ -3326,10 +3326,10 @@ int main(int arg_count, char const **arg_ptr) {
|
|||||||
// and that no custom microarch was chosen.
|
// and that no custom microarch was chosen.
|
||||||
if (should_use_march_native() && march == get_default_microarchitecture()) {
|
if (should_use_march_native() && march == get_default_microarchitecture()) {
|
||||||
if (command == "run" || command == "test") {
|
if (command == "run" || command == "test") {
|
||||||
gb_printf_err("Error: Try using '-microarch:native' as Odin defaults to %.*s (close to Nehalem) by default and your CPU seems to be a much older CPU.\n", LIT(march));
|
gb_printf_err("Error: Try using '-microarch:native' as Odin defaults to %.*s (close to Nehalem), and your CPU seems to be older.\n", LIT(march));
|
||||||
gb_exit(1);
|
gb_exit(1);
|
||||||
} else if (command == "build") {
|
} else if (command == "build") {
|
||||||
gb_printf("Suggestion: Try using '-microarch:native' as Odin defaults to %.*s (close to Nehalem) by default and your CPU seems to be a much older CPU.\n", LIT(march));
|
gb_printf("Suggestion: Try using '-microarch:native' as Odin defaults to %.*s (close to Nehalem), and your CPU seems to be older.\n", LIT(march));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user