Code Monkey home page Code Monkey logo

setup-lazarus's Issues

Linker errors on FPC 3.0.4 under ubuntu-latest (22.04)

Under Lazarus 1.8.4 and 2.0.8 (and probably others), the error is as follows:

/usr/bin/ld: /usr/lib/fpc/3.0.4/units/x86_64-linux/rtl/cprt0.o: in function `_start':
(.text+0x3c): undefined reference to `__libc_csu_init'
/usr/bin/ld: (.text+0x43): undefined reference to `__libc_csu_fini'
Error: (9013) Error while linking
Fatal: (10026) There were 1 errors compiling module, stopping
Fatal: (1018) Compilation aborted
Error: /usr/bin/ppcx64 returned an error exitcode

Lazarus version based on FPC 3.2.0 (from 2.0.10) build successfully.

The build was also successful on Lazarus 2.0.8 before ubuntu-latest has changed from 20.04 to 22.04.

Please take a look :)

Does setup-lazarus action use cache?

Hello,

thanks a lot for your work! It's not an issue, rather the question. Does setup-lazarus action use GHA caching functionality or binaries are installed/downloaded from scratch every time?

Regards

Implement runs-on for macos-latest at least

Up to date Googling suggest the following to install a *.dmg from the command line:

# usage: installdmg https://example.com/path/to/pkg.dmg
function installdmg {
    set -x
    tempd=$(mktemp -d)
    curl $1 > $tempd/pkg.dmg
    listing=$(sudo hdiutil attach $tempd/pkg.dmg | grep Volumes)
    volume=$(echo "$listing" | cut -f 3)
    if [ -e "$volume"/*.app ]; then
      sudo cp -rf "$volume"/*.app /Applications
    elif [ -e "$volume"/*.pkg ]; then
      package=$(ls -1 "$volume" | grep .pkg | head -1)
      sudo installer -pkg "$volume"/"$package" -target /
    fi
    sudo hdiutil detach "$(echo "$listing" | cut -f 1)"
    rm -rf $tempd
    set +x
}

Windows: add path to FPC to PAHT env variable

Hi,
any chance after Lazarus installation is finished the path to fpc.exe could be added to PATH environmental variable? It looks like the FPC version could be taken from Laz installer name lazarus-2.2.0-fpc-3.2.2-win64.exe.
It's possible to use directly e.g. D:\a\_temp\lazarus\fpc\3.2.2\bin\x86_64-win64\fpc.exe now
but that looks pretty fragile.

Or is there some way how to get path to FPC (or at least FPC version) from lazbuild that I missed?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.