Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions aarch64-unknown-sunrise-user.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"abi-blacklist": [
"stdcall",
"fastcall",
"vectorcall",
"thiscall",
"win64",
"sysv64"
],
"arch": "aarch64",
"data-layout": "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128",
"dynamic-linking": false,
"env": "user",
"executables": true,
"has-elf-tls": true,
"has-rpath": false,
"linker-flavor": "ld.lld",
"linker-is-gnu": true,
"llvm-target": "aarch64-unknown-none",
"max-atomic-width": 128,
"os": "sunrise",
"panic-strategy": "abort",
"position-independent-executables": true,
"target-c-int-width": "32",
"target-endian": "little",
"target-mcount": "\u0001_mcount",
"target-pointer-width": "64",
"tls-model": "initial-exec"
}
2 changes: 1 addition & 1 deletion libuser/src/crt0/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
pub mod relocation;

/// Executable entrypoint. Handle relocations and calls real_start.
#[cfg(target_os = "sunrise")]
#[cfg(all(target_os = "sunrise", target_arch = "x86"))]
#[naked]
#[no_mangle]
#[link_section = ".text.crt0"]
Expand Down
Loading