1
0

ci?
Some checks failed
CI / Typos (push) Successful in 7s
CI / Build (push) Successful in 38s
CI / Clippy (push) Failing after 52s

This commit is contained in:
Mark 2025-02-25 19:29:02 -08:00
parent 58825f6ae0
commit 81fcd2a6e2
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
2 changed files with 27 additions and 27 deletions

View File

@ -50,7 +50,7 @@ jobs:
sudo apt update sudo apt update
DEBIAN_FRONTEND=noninteractive \ DEBIAN_FRONTEND=noninteractive \
sudo apt install --yes \ sudo apt install --yes \
rustup rustup nasm
- name: Build - name: Build
run: make run: make

View File

@ -1,28 +1,28 @@
{ {
"llvm-target": "i686-unknown-none", "llvm-target": "i686-unknown-none",
"target-endian": "little", "target-endian": "little",
"target-pointer-width": "32", "target-pointer-width": "32",
"target-c-int-width": "32", "target-c-int-width": "32",
"data-layout": "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-i128:128-f64:32:64-f80:32-n8:16:32-S128", "data-layout": "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-i128:128-f64:32:64-f80:32-n8:16:32-S128",
"arch": "x86", "arch": "x86",
"os": "none", "os": "none",
"env": "", "env": "",
"vendor": "unknown", "vendor": "unknown",
"linker-flavor": "gcc", "linker-flavor": "gcc",
"panic-strategy": "abort", "panic-strategy": "abort",
"pre-link-args": { "pre-link-args": {
"gcc": ["-m32", "-nostdlib", "-static"] "gcc": ["-m32", "-nostdlib", "-static"]
}, },
"features": "-mmx,-sse,-sse2,-sse3,-ssse3,-sse4.1,-sse4.2,-3dnow,-3dnowa,-avx,-avx2,+soft-float", "features": "-mmx,-sse,-sse2,-sse3,-ssse3,-sse4.1,-sse4.2,-avx,-avx2,+soft-float",
"dynamic-linking": false, "dynamic-linking": false,
"executables": false, "executables": false,
"relocation-model": "static", "relocation-model": "static",
"code-model": "large", "code-model": "large",
"disable-redzone": true, "disable-redzone": true,
"frame-pointer": "always", "frame-pointer": "always",
"exe-suffix": "", "exe-suffix": "",
"has-rpath": false, "has-rpath": false,
"no-default-libraries": true, "no-default-libraries": true,
"position-independent-executables": false, "position-independent-executables": false,
"tls-model": "global-dynamic" "tls-model": "global-dynamic"
} }