# New Ticket Created by  [EMAIL PROTECTED] 
# Please include the string:  [perl #40030]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=40030 >


The trunk wasn't compilling in my machines...

After digging into Makefile I found missing depencies linking
miniparrot and parrot

Here's the patch that solved it

server parrot # diffstat imcc_dependency.diff
 CREDITS                      |    5 +++++
 config/gen/makefiles/root.in |    2 ++
 2 files changed, 7 insertions(+)

-- 
Will work for bandwidth
Index: CREDITS
===================================================================
--- CREDITS     (revision 13708)
+++ CREDITS     (working copy)
@@ -410,6 +410,11 @@
 N: Ron Blaschke
 D: Win32 patches
 
+N: R�ben Fonseca
+E: [EMAIL PROTECTED]
+D: Missing dependency to compiler/imcc
+S: Braga, Portugal
+
 N: Sam Ruby
 D: Pythonic and OO patches
 
Index: config/gen/makefiles/root.in
===================================================================
--- config/gen/makefiles/root.in        (revision 13708)
+++ config/gen/makefiles/root.in        (working copy)
@@ -742,6 +742,7 @@
     $(MINIPARROT)
        $(LINK) @[EMAIL PROTECTED]@ $(LINKFLAGS) $(LINK_DYNAMIC) \
     $(IMCC_DIR)/main$(O) @rpath_blib@ $(ALL_PARROT_LIBS) \
+        $(IMCC_DIR)/imclexer$(O) $(IMCC_DIR)/parser_util$(O) 
$(IMCC_DIR)/debug$(O) \
     $(SRC_DIR)/parrot_config$(O)
 #
 # TODO build the real miniparrot
@@ -749,6 +750,7 @@
 $(MINIPARROT) : $(IMCC_DIR)/main$(O) $(GEN_HEADERS) $(LIBPARROT) \
     lib/Parrot/OpLib/core.pm $(SRC_DIR)/null_config$(O)
        $(LINK) @[EMAIL PROTECTED]@ $(LINKFLAGS) $(IMCC_DIR)/main$(O) \
+        $(IMCC_DIR)/imclexer$(O) $(IMCC_DIR)/parser_util$(O) 
$(IMCC_DIR)/debug$(O) \
     @rpath_blib@ $(ALL_PARROT_LIBS) $(SRC_DIR)/null_config$(O)
 
 $(INSTALLABLEPARROT) : $(IMCC_DIR)/main$(O) $(GEN_HEADERS) $(LIBPARROT) \

Reply via email to