|
From: Matias Z. M. <zay...@gm...> - 2025-08-20 10:32:47
|
Hi, just wanted to say that I just had the same PLIB issue as parent
I'm compiling in Ubuntu with
download_and_compile.sh -s -j$(nproc)
I did a cleanup and updated fgmeta, with no luck.
When compiling as suggested in the chain:
download_and_compile.sh --cleanup -s -pn -j$(nproc) -GNinja SIMGEAR FGFS
DATA CARES PLIB
It works.
Thought this would help finding the root cause (probably
download_and_compile.sh
needs to be reviewed)
Thanks!
On Tue, Aug 19, 2025 at 7:46 AM Florent Rougon via Flightgear-devel <
fli...@li...> wrote:
> Le 19/08/2025, bo23--- via Flightgear-devel <
> fli...@li...> a écrit:
>
> > Don't feel too sorry, I also missed it. In fact, I didn't include any
> > component in my line, thus defaulting to ALL.
>
> So, unless I'm mistaken, you implicitly used this:
>
> CARES DATA FGFS OSG SIMGEAR PLIB
>
> because of:
>
> # Components to process when none has been specified (in 'normal' mode)
> declare -a WHATTOBUILDALL=(CARES DATA FGFS OSG SIMGEAR)
>
> if [[ $SELECTED_SUITE != "next" ]]; then
> WHATTOBUILDALL+=(PLIB)
> fi
>
> declare -a WHATTOBUILD
>
> if [[ $# -eq 0 && "$CLEANUP" = "n" ]] || _elementIn ALL "$@"; then
> WHATTOBUILD=( "${WHATTOBUILDALL[@]}" )
> else
> WHATTOBUILD=( "$@" )
> fi
>
> My previous message still had a confusion (sorry!): the successful build
> I first reported about didn't use the OSG repo in my dnc-managed dir at
> all, it used the 'libopenscenegraph-dev' distro package (version
> 3.6.5+dfsg1-9). This is because:
> - the use of --cleanup guaranteed that previously built OSG files in
> the dnc-managed dir (in particular in $INSTALL_DIR_OSG) were removed
> at the beginning of the d&c run;
> - OSG isn't an “intercomponent dep” (cf. function
> _maybe_add_intercomponent_deps()), so as I didn't specify OSG, it
> wasn't compiled.
>
> Regards
>
> --
> Florent
>
>
> _______________________________________________
> Flightgear-devel mailing list
> Fli...@li...
> https://lists.sourceforge.net/lists/listinfo/flightgear-devel
>
|