when I try to build current lazarus trunk.
Someone please check it
Alright, within the past 6 hours I've done a couple builds against the latest trunk, the latest just now.
FPC and Lazarus versions from git describe.
- 3.3.1-12232-g30e0df384d main-2_3-3114-g5719672f10
- 3.3.1-12235-g28b4189a9a main-2_3-3114-g5719672f10
Both builds completed fine, no failures.
Both are the same as the second version you are showing.
What build instructions are you following?
I'm using my own script from here:
https://github.com/bogen85/das-upgrade-fpc-lazarus-from-source/blob/main/upgrade-all.shhttps://github.com/bogen85/das-upgrade-fpc-lazarus-from-source/blob/main/lib/build-lazarus.shSpecifically this, but this is run in the context of the upgrade all script:
echo '@@ Build Lazarus'
(
set -x;
cd $SHARED_FPC_GIT_/lazarus-main;
git describe
make --silent cleanall;
export PATH=$SHARED_FPC_BIN_:$SHARED_FPC_BASE_:$PATH;
make --silent bigide 2>&1 |\
grep -Ev '(Linking |Start compiling package|warning: |Warning: |Hint: |Note: |Writing Resource String| not found)' |\
grep -Ev '(Free Pascal Compiler version |Copyright |\(s\) issued| lines compiled.|Target OS: )'
git describe
true
)