Hi,

while I wanted to help Infinoid finding `make -jn` bugs, I had an idea: build 
a static parrot and compare nm symbols for diffs [1].

But the static build failed. I used to do:

[EMAIL PROTECTED]:~/svn/parrot/leo> cat doits
perl Configure.pl --maintainer --parrot_is_shared=0 "$@" 2>&1 | tee make.log 
&& \
make -j1 all test

which failed here:

./miniparrot config_lib.pasm > runtime/parrot/include/config.fpmc
./miniparrot: error while loading shared libraries: libparrot.so.0.6.0: cannot 
open shared object file: No such file or directory

leo

[1] the idea being:

compile static parrot with -j1
nm parrot > syms_j1        # maybe nm -a

compile static parrot with -j8
nm parrot > syms_j8

diff syms_j1 syms_j8 | head

The (1.) error/problem could be in the file at/before the first different 
lines.

Reply via email to