Package Details: ladybird 20240417-1

Git Clone URL: https://aur.archlinux.org/ladybird.git (read-only, click to copy)
Package Base: ladybird
Description: Web browser built from scratch using the SerenityOS LibWeb engine
Upstream URL: https://github.com/SerenityOS/serenity
Licenses: BSD
Submitter: arojas
Maintainer: timschumi
Last Packager: timschumi
Votes: 5
Popularity: 0.011531
First Submitted: 2023-04-01 08:36 (UTC)
Last Updated: 2024-04-17 15:52 (UTC)

Latest Comments

jdrdan commented on 2023-11-13 20:50 (UTC) (edited on 2023-11-13 20:51 (UTC) by jdrdan)

Changed my PKGBUILD to add some options to cmake to fix detection of thread support on aarch64.

  cmake \
    -B build \
    -S 'serenity/Ladybird' \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX='/usr' \
    -DCMAKE_THREAD_LIBS_INIT="pthread" \
    -DCMAKE_HAVE_THREADS_LIBRARY=1 \
    -DCMAKE_USE_WIN32_THREADS_INIT=0 \
    -DCMAKE_USE_PTHREADS_INIT=1 \
    -DTHREADS_PREFER_PTHREAD_FLAG=ON \
    -GNinja \
    -Wno-dev