diff options
author | Federico Ceratto <federico@debian.org> | 2021-09-09 12:57:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-09 13:57:21 +0200 |
commit | a896f9f19eec221b8651849297bdbc8be72b00af (patch) | |
tree | 34ced23d35c7a8a53e9ce29d048064879c27f0e8 | |
parent | 23e10ea85ea35c1a5963bfd12fb69efe6358076a (diff) | |
download | Nim-a896f9f19eec221b8651849297bdbc8be72b00af.tar.gz |
Clarify unknown processor error (#18829)
-rw-r--r-- | tools/niminst/makefile.nimf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/niminst/makefile.nimf b/tools/niminst/makefile.nimf index d14960ac5..a0e9a40f7 100644 --- a/tools/niminst/makefile.nimf +++ b/tools/niminst/makefile.nimf @@ -164,7 +164,7 @@ ifeq ($(ucpu),riscv64) mycpu = riscv64 endif ifndef mycpu - $(error unknown processor: $(ucpu)) + $(error unknown CPU architecture: $(ucpu) See makefile.nimf) endif # for osA in 1..c.oses.len: |