1 2 3 4 5 6 7 8 9 10 11
|
needs: cache-maker
runs-on: ubuntu-latest
strategy:
matrix:
meson_flags: [
"",
# math configurations, one with multithread disabled and with locale, original malloc and atexit/onexit code
"-Dio-float-exact=false -Dio-long-long=true -Dio-percent-b=true -Dio-long-double=true -Dnewlib-obsolete-math=false -Dwant-math-errno=true -Dsingle-thread=true -Dmb-capable=true -Dmb-extended-charsets=true -Dprintf-small-ultoa=true -Dprintf-percent-n=true",
"-Dformat-default=integer -Dfreestanding=true -Dnewlib-obsolete-math=true -Dwant-math-errno=true -Dassert-verbose=false -Dfast-bufio=true -Dstdio-locking=true -Dfstat-bufsiz=true",
]
|