[project @ 1998-05-05 12:53:29 by sof]
authorsof <unknown>
Tue, 5 May 1998 12:53:33 +0000 (12:53 +0000)
committersof <unknown>
Tue, 5 May 1998 12:53:33 +0000 (12:53 +0000)
Renamed conc syslib to concurrent

ghc/driver/ghc.lprl
ghc/lib/concurrent/Makefile

index 25e3deb..2b69724 100644 (file)
@@ -2457,7 +2457,7 @@ sub add_syslib {
 
     push(@SysLibrary, "-lHS$syslib");
     push(@SysLibrary, "-lHS${syslib}_cbits")
-          unless $syslib eq 'contrib' || $syslib eq 'exts' || $syslib eq 'conc';
+          unless $syslib eq 'contrib' || $syslib eq 'exts' || $syslib eq 'concurrent';
          #HACK! they have no cbits
 }
 \end{code}
@@ -2766,7 +2766,7 @@ arg: while($_ = $Args[0]) {
     #--------- ticky/concurrent/parallel -----------------------------------
     # we sort out the details a bit later on
 
-    /^-concurrent$/ && do { $CONCURing = 'c'; &add_syslib('conc'); next arg; }; 
+    /^-concurrent$/ && do { $CONCURing = 'c'; &add_syslib('concurrent'); next arg; }; 
                          # concurrent Haskell; implies -syslib conc
     /^-gransim$/    && do { $GRANing   = 'g'; next arg; }; # GranSim
     /^-ticky$/     && do { $TICKYing  = 't'; next arg; }; # ticky-ticky
index 9fb21cc..e492a34 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.4 1998/04/16 12:50:50 sof Exp $
+# $Id: Makefile,v 1.5 1998/05/05 12:53:29 sof Exp $
 #
 # Makefile for concurrent libraries.
 #
@@ -12,7 +12,7 @@ WAYS=$(GhcLibWays)
 #      Setting the standard variables
 #
 
-LIBRARY = libHSconc$(_way).a
+LIBRARY = libHSconcurrent$(_way).a
 HS_SRCS        = $(wildcard *.lhs)
 HS_OBJS = $(HS_SRCS:.lhs=.$(way_)o)
 LIBOBJS = $(HS_OBJS)