mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 01:27:42 +00:00
14 lines
349 B
Bash
Executable file
14 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
|