[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Compiling DrScheme 103p1 on Tru64...



Quoting Ken Kleiner:
> a - Utilities/Application.o
> ar: Error: Utilities/Application.o cannot open
> ...

I notice that the files `ar' can't open are the ones that appear after
a "!-newline" combination in your message.

Any idea where the "!" comes from? (Is it just in the display from
`make', or is it something real that confuses ar?)


In any case, you might try to avoid the problem by breaking up the call
to `ar' in plt/src/wxxt/src/Makefile.in:

	$(AR) $(ARFLAGS) lib$(LIBNAME).a $(OBJS)

changed to

	$(AR) $(ARFLAGS) lib$(LIBNAME).a $(COBJS) $(WOBJS)
	$(AR) $(ARFLAGS) lib$(LIBNAME).a $(CCOBJS)

I'm not sure whether that's enough, though. You might have to break up
the CCOBJS list into a couple of pieces.


Matthew