mirror of
https://github.com/RGBCube/serenity
synced 2025-07-08 20:27:35 +00:00

* Use ${version} instead of explicit version numbers in urls/filenames * Move -L option to port script, as this is always good * Fix some various other stuff
13 lines
335 B
Bash
Executable file
13 lines
335 B
Bash
Executable file
#!/bin/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
|