Matt Diephouse wrote:
Nick Glencross <[EMAIL PROTECTED]> wrote:
+# Here comes some stuff for Cygwin
+if ($^O eq 'cygwin') {
+ $LD_LOAD_FLAGS .= ' ../src/parrot_config.o';
+ $LIBPARROT = qq[-L../blib/lib -lparrot];
+}
Make sure this patch will work to make Tcl too (languages/tcl/), which
has PMCs inside of its classes/ directory. Using relative paths will
probably not work (Tcl is two directories deeper). Instead, use
${build_dir} to get the root parrot directory and build your paths
from there.
Good advice. Yea, quick hack to see what problems lay in wait once I got
dynclasses compiled...
Nick