mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
* Change context destruction order. * enable emulated tls on termux * Fix stdlib on android * Add a CI workflow for android termux * update release notes * use the new unified CI tests on android --------- Co-authored-by: Christoffer Lerno <christoffer@aegik.com>
25 lines
403 B
JSON
25 lines
403 B
JSON
{
|
|
"provides": "clib",
|
|
"c-sources": [
|
|
"hello2.c",
|
|
"whitespace test.c"
|
|
],
|
|
"targets": {
|
|
"macos-x64": {},
|
|
"macos-aarch64": {},
|
|
"netbsd-x64": {},
|
|
"netbsd-aarch64": {},
|
|
"openbsd-x64": {},
|
|
"linux-x64": {
|
|
"cflags": "-fPIE"
|
|
},
|
|
"windows-x64": {
|
|
"c-include-dirs": [
|
|
"C:\\"
|
|
]
|
|
},
|
|
"android-aarch64": {},
|
|
"android-x86_64": {}
|
|
}
|
|
}
|