Skip to content
Snippets Groups Projects
Commit e7833e59 authored by sof's avatar sof
Browse files

[project @ 1998-05-05 12:53:29 by sof]

Renamed conc syslib to concurrent
parent e3501543
No related merge requests found
......@@ -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
......
# $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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment