Ross Mohn | 26 Aug 2008 19:00
Favicon
Gravatar

Re: ANNOUNCE: Grace 1.0.2

On Mon, Aug 25, 2008 at 09:33:50PM -0400, Ross Mohn wrote:
<snip>
> After these changes, I was able to successfully compile GraceCL, but the
> Grace binary had too many linking errors for me to deal with right now.
> I hope to have some time to play with GraceCL later this week!

I'm able to build the Grace binary now. It was just missing Csound.o
and Fomus.o in the Grace.make file:

 <at>  <at>  -52,8 +52,6  <at>  <at>  OBJECTS := \
 	$(OBJDIR)/Syntab.o \
 	$(OBJDIR)/Syntax.o \
 	$(OBJDIR)/Toolbox.o \
+	$(OBJDIR)/Csound.o \
+	$(OBJDIR)/Fomus.o \

 MKDIR_TYPE := msdos
 CMD := $(subst \,\\,$(ComSpec)$(COMSPEC))
 <at>  <at>  -158,13 +156,5  <at>  <at>  $(OBJDIR)/Toolbox.o: ../../src/Toolbox.c
 	-$(CMD_MKOBJDIR)
 	$(CXX) $(CXXFLAGS) -o $ <at>  -c $<

+$(OBJDIR)/Csound.o: ../../src/Csound.cpp
+	-$(CMD_MKOBJDIR)
+	$(CXX) $(CXXFLAGS) -o $ <at>  -c $<
+
+$(OBJDIR)/Fomus.o: ../../src/Fomus.cpp
+	-$(CMD_MKOBJDIR)
+	$(CXX) $(CXXFLAGS) -o $ <at>  -c $<
+
 -include $(OBJECTS:%.o=%.d)

Now I get this error when I run Grace. I'll try to look at it later.

Error: unbound variable: make-hash-table
Call history:
ChickenBridge.scm: 249  ##sys#register-macro
ChickenBridge.scm: 256  make-hash-table<--

We're getting closer! -Ross

Gmane