Differences From Artifact [c6457b56af]:
- Executable file server/buildpkgs/platform — part of check-in [d4584bf4ae] at 2010-02-09 14:39:28 on branch trunk — Updated to attempt to determine OS from magic of built Tcl Updated to pass arguments from the command line to subsequent "build.sh" scripts Fixed issue on "dict" where "out" was being cleaned up (user: rkeene, size: 1698) [annotate] [blame] [check-ins using]
To Artifact [f9b9ccb779]:
- Executable file server/buildpkgs/platform — part of check-in [5e09d65c21] at 2010-02-28 23:23:16 on branch trunk — Added HP-UX support to platform script (user: rkeene, size: 1781) [annotate] [blame] [check-ins using]
︙ | |||
26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + + + | ;; *elf*32-bit*sparc*) CPUPLAT="sparc" ;; *elf*64-bit*sparc*) CPUPLAT="sparc64" ;; *pa-risc*) CPUPLAT="parisc" ;; esac if [ "${MAGICOS}" != "`uname -s`" ]; then # Cross compiling, try to determine OS ... true fi ;; |
︙ | |||
79 80 81 82 83 84 85 86 87 88 89 | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | + + + | *) CPUPLAT="ix86" ;; esac echo "solaris${SOLVER}-${CPUPLAT}" ;; HP-UX) echo "hpux-${CPUPLAT}" ;; *) echo "`uname -s | dd conv=lcase 2>/dev/null`-`uname -m | dd conv=lcase 2>/dev/null`" ;; esac |