diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2022-11-28 18:33:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-28 13:33:09 -0500 |
commit | 8a68ed65d00d456198c8724b8e579a929233419b (patch) | |
tree | 12cb347ba2d51d47385399ed24c8d0698efb36a9 /tools/niminst | |
parent | d26b1232ee7a69c2a71db81aa0185499321c54fe (diff) | |
download | Nim-8a68ed65d00d456198c8724b8e579a929233419b.tar.gz |
Support IBM Z architecture (#20943)
Diffstat (limited to 'tools/niminst')
-rw-r--r-- | tools/niminst/makefile.nimf | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/niminst/makefile.nimf b/tools/niminst/makefile.nimf index 99dd78176..46b4892a0 100644 --- a/tools/niminst/makefile.nimf +++ b/tools/niminst/makefile.nimf @@ -103,6 +103,9 @@ endif ifeq ($(ucpu),x86_64) mycpu = amd64 endif +ifeq ($(ucpu),s390x) + mycpu = s390x +endif ifeq ($(ucpu),sparc) mycpu = sparc endif |