On Fri, Apr 9, 2010 at 8:36 AM, Matti Airas <[email protected]> wrote:
> On 09.04.2010 15:01, ext Darren Dale wrote:
>
>>> /usr/local/bin/generatorrunner: error while loading shared libraries:
>>> libgenrunner.so.0.4.1: cannot open shared object file: No such file or
>>> directory
>>> make[2]: ***
>>> [tests/samplebinding/sample/abstractmodifications_wrapper.cpp]
>>> Error 127
>>> make[1]: *** [tests/samplebinding/CMakeFiles/sample.dir/all] Error 2
>>> make: *** [all] Error 2
>>>
>>> libgenrunner.so.0.4.1 is definitely present in /usr/local/lib/, which
>>> is included by default in /etc/ld.so.conf on ubuntu lucid.
>>
>> I just wanted to follow up and ask if there are any suggestions about
>> how to install from git. If there are no suggestions, could someone
>> comment on when an ubuntu lucid repository might be available?
>
> Hi Darren,
>
> Sorry for accidentally ignoring you earlier. I suppose we'll have a Lucid
> repo available once we make the next release and generate new packages.
>
> Apparently Lizardo beat me to responding your mail but I'll still comment to
> your specific problem as I bumped into it myself today. I simply ran "sudo
> ldconfig" and tried building again and it succeeded, so it was just a matter
> of outdated shared library cache. But this was on karmic.
>
> Here's my (rather more simplistic) build script. Probably we should make
> canonical scripts and document them properly...
>
> --8<----8<----8<----8<----8<----8<----8<--
> #!/bin/bash
>
> alldirs="apiextractor generatorrunner shiboken pyside-shiboken"
>
> if [ "x$*" == "x" ] ; then
>    dirs=$alldirs
> else
>    dirs="$@"
> fi
>
> for d in $dirs ; do
>    rm -rf $d/build
>    mkdir -p $d/build
>    cd $d/build
>    cmake -DCMAKE_BUILD_TYPE=Debug ..  && make -j2 && sudo make install ||
> exit 1
>    cd ../..
> done
> --8<----8<----8<----8<----8<----8<----8<--

Thank you Matti and Anderson. I will try again early next week.

Darren
_______________________________________________
PySide mailing list
[email protected]
http://lists.openbossa.org/listinfo/pyside

Reply via email to