Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Looks like mabi option doesn't affect ABI of generated ELF #20

Open
cesarus777 opened this issue Apr 14, 2024 · 0 comments
Open

Looks like mabi option doesn't affect ABI of generated ELF #20

cesarus777 opened this issue Apr 14, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@cesarus777
Copy link

Reproduce on 1.0

layout.yaml:

options:
  march: riscv64
  mabi: lp64d
  model-plugin: None
  seed: 0

sections:
  - name: text
    VMA: 0x1000
    LMA: 0x1000
    SIZE: 0x1000
    ACCESS: rx
  - name: data
    VMA: 0x2000
    LMA: 0x2000
    SIZE: 0x1000
    ACCESS: rw

histogram:
  - [ADD, 1]

Command:

llvm-snippy layout.yaml

wrapper.c:

void SnippyFunction();
int main() { SnippyFunction(); }

Compile wrapper and link with generated snippet:

riscv64-linux-gnu-gcc wrapper.c layout.yaml.elf

Output:

/usr/lib/gcc/riscv64-linux-gnu/13.2.0/../../../../riscv64-linux-gnu/bin/ld: layout.yaml.elf: can't link soft-float modules with double-float modules
/usr/lib/gcc/riscv64-linux-gnu/13.2.0/../../../../riscv64-linux-gnu/bin/ld: failed to merge target specific data of file layout.yaml.elf
/usr/lib/gcc/riscv64-linux-gnu/13.2.0/../../../../riscv64-linux-gnu/bin/ld: warning: a.out has a LOAD segment with RWX permissions
collect2: error: ld returned 1 exit status
@kv-sc kv-sc added the bug Something isn't working label Jun 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants