mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 14:48:15 +00:00
Recent ports already do this, let's update the others as well. One step closer to multi-arch support for ports! :^)
17 lines
409 B
Bash
Executable File
17 lines
409 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=tinycc
|
|
version=dev
|
|
files="https://github.com/TinyCC/tinycc/archive/dev.tar.gz tinycc-dev.tar.gz"
|
|
useconfigure=true
|
|
makeopts=tcc
|
|
|
|
configure() {
|
|
run ./configure \
|
|
--cross-prefix="${SERENITY_ARCH}-pc-serenity-" \
|
|
--cpu="${SERENITY_ARCH}" \
|
|
--triplet="${SERENITY_ARCH}-pc-serenity" \
|
|
--crtprefix=/usr/lib
|
|
}
|
|
|
|
export CONFIG_ldl=no
|