mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
f46d80ac4f
* 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
14 lines
335 B
Bash
Executable File
14 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
|