mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-05 16:14:38 +00:00
15 lines
349 B
Bash
Executable File
15 lines
349 B
Bash
Executable File
#!/bin/bash ../.port_include.sh
|
|
port=tinycc
|
|
workdir=tinycc-dev
|
|
version=dev
|
|
curlopts="-L"
|
|
files="https://github.com/TinyCC/tinycc/archive/dev.tar.gz tinycc-dev.tar.gz"
|
|
useconfigure=true
|
|
makeopts=tcc
|
|
|
|
configure() {
|
|
run ./configure --cross-prefix=i686-pc-serenity- --cpu=i686 --triplet=i686-pc-serenity --crtprefix=/usr/lib
|
|
}
|
|
|
|
export CONFIG_ldl=no
|