Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Updated to resolve arch name for unknown platforms |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
bd4cfb91af32630c47fe8c813e2bf1cb |
| User & Date: | rkeene 2015-01-20 17:02:09 |
Context
|
2015-01-20
| ||
| 17:30 | Fixed issues with compiling LibreSSL check-in: e01d8774a3 user: rkeene tags: trunk | |
| 17:02 | Updated to resolve arch name for unknown platforms check-in: bd4cfb91af user: rkeene tags: trunk | |
| 16:52 | Added SHA1 for LibreSSL check-in: 2bb4e840f3 user: rkeene tags: trunk | |
Changes
Changes to scripts/common.
| ︙ | ︙ | |||
139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
case "${arch}" in
-m32)
host="$(echo "${CCNAME}" | sed 's@^x86_64-@i486-@;s@^sparcv9-@sparc-@')"
;;
-m64)
host="$(echo "${CCNAME}" | sed 's@^i.86-@x86_64-@;s@-x32-@-@;s@^x32-@x86_64-@;s@^sparc-@sparcv9-@')"
;;
esac
echo "${host}"
return 0
;;
esac
| > > > | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
case "${arch}" in
-m32)
host="$(echo "${CCNAME}" | sed 's@^x86_64-@i486-@;s@^sparcv9-@sparc-@')"
;;
-m64)
host="$(echo "${CCNAME}" | sed 's@^i.86-@x86_64-@;s@-x32-@-@;s@^x32-@x86_64-@;s@^sparc-@sparcv9-@')"
;;
*)
host="${CCNAME}.${arch}"
;;
esac
echo "${host}"
return 0
;;
esac
|
| ︙ | ︙ |