diff options
author | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2019-09-26 15:45:06 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-26 15:45:05 +0200 |
commit | 944fcc0e62bb22b9f5da79909dfbda4371de1fc6 (patch) | |
tree | e7188351a930ee64bedf41565bac98b023545987 /tools/niminst | |
parent | 657e09e79deabe6304ead7759a4fdcfeb5fd022b (diff) | |
download | Nim-944fcc0e62bb22b9f5da79909dfbda4371de1fc6.tar.gz |
Add build support for Linux/hppa (#12271)
* build.sh: Enable CPU detection for hppa * compiler: Add hppa as target architecture on Linux * lib/system: Add platform support for hppa
Diffstat (limited to 'tools/niminst')
-rw-r--r-- | tools/niminst/buildsh.nimf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/niminst/buildsh.nimf b/tools/niminst/buildsh.nimf index 464c54594..9289feb90 100644 --- a/tools/niminst/buildsh.nimf +++ b/tools/niminst/buildsh.nimf @@ -162,6 +162,8 @@ case $ucpu in mycpu="powerpc" fi ;; + *hppa*) + mycpu="hppa" ;; *ia64*) mycpu="ia64" ;; *m68k*) |