1e9c6a5d67
nhc98 is a small, easy to install, standards-compliant compiler for Haskell 98, the lazy functional programming language. It is very portable, and aims to produce small executables that run in small amounts of memory. It produces medium-fast code, and compilation is itself quite fast. It also comes with extensive tool support for automatic compilation, foreign language interfacing, heap and time profiling, tracing, and debugging. (Some of its advanced kinds of heap profiles are not found in any other Haskell compiler.) testing, tweaks xsa@; ok pvalchev@
22 lines
687 B
Plaintext
22 lines
687 B
Plaintext
$OpenBSD: patch-script_harch,v 1.1.1.1 2004/05/10 04:39:03 dons Exp $
|
|
|
|
Let PLIST work nicely with MACHINE_ARCH
|
|
|
|
--- script/harch.orig 2003-02-14 05:08:43.000000000 +1100
|
|
+++ script/harch 2004-05-07 12:08:49.000000000 +1000
|
|
@@ -48,11 +48,12 @@ REL=`echo $REL | tr '/ ' '-'`
|
|
|
|
# Canonicalise equivalent processor families to one representative member.
|
|
case $PROCESSOR in
|
|
- i[3456789]86) PROCESSOR=ix86;;
|
|
- athlon) PROCESSOR=ix86;;
|
|
+ i[3456789]86) PROCESSOR=i386;;
|
|
+ athlon) PROCESSOR=i386;;
|
|
sun3*) PROCESSOR=sun3;;
|
|
sun4*) PROCESSOR=sun4;;
|
|
sparc*) PROCESSOR=sparc;;
|
|
+ macppc*) PROCESSOR=powerpc;;
|
|
esac
|
|
|
|
# Keep OS release number only if it might be relevant.
|