From af000f5fcfc0e20bdb41b79162737dcf1001089f Mon Sep 17 00:00:00 2001
From: hallgren <hallgren>
Date: Tue, 31 Aug 1993 13:40:41 +0000
Subject: [PATCH] Added support for alpha/osf1.

---
 tools/worldcom.lisp | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/tools/worldcom.lisp b/tools/worldcom.lisp
index d6bd5281a..35faba40a 100644
--- a/tools/worldcom.lisp
+++ b/tools/worldcom.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.64 1993/08/25 21:59:45 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldcom.lisp,v 1.65 1993/08/31 13:40:41 hallgren Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -78,6 +78,12 @@
   (comf "target:assembly/x86/arith" :assem t)
   (comf "target:assembly/x86/alloc" :assem t))
 
+(when (c:backend-featurep :alpha)
+  (comf "target:assembly/alpha/assem-rtns" :assem t)
+  (comf "target:assembly/alpha/array" :assem t)
+  (comf "target:assembly/alpha/arith" :assem t)
+  (comf "target:assembly/alpha/alloc" :assem t))
+
 ;;; these guys can supposedly come in any order, but not really.
 ;;; some are put at the end so macros don't run interpreted and stuff.
 
@@ -131,6 +137,8 @@
   (comf "target:code/sunos-os"))
 (when (c:backend-featurep :hpux)
   (comf "target:code/hpux-os"))
+(when (c:backend-featurep :osf1)
+  (comf "target:code/osf1-os"))
 
 (when (c:backend-featurep :pmax)
   (comf "target:code/pmax-vm"))
@@ -142,6 +150,8 @@
   (comf "target:code/hppa-vm"))
 (when (c:backend-featurep :x86)
   (comf "target:code/x86-vm"))
+(when (c:backend-featurep :alpha)
+  (comf "target:code/alpha-vm"))
 
 (comf "target:code/symbol")
 (comf "target:code/bignum")
-- 
GitLab