mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 06:14:58 +00:00
13 lines
346 B
Bash
Executable file
13 lines
346 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=tinycc
|
|
workdir=tinycc-dev
|
|
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=i686-pc-serenity- --cpu=i686 --triplet=i686-pc-serenity --crtprefix=/usr/lib
|
|
}
|
|
|
|
export CONFIG_ldl=no
|