diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-04-21 23:25:57 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-04-21 23:25:57 +0300 |
| commit | 42451ed4718af3f93770feb201bd023625d69b3a (patch) | |
| tree | 7f69bc86e0fc0591f176ca086db377e1cb99a718 /arch/riscv64/source.mk | |
| parent | 1a5248bb177242a34fd51efadb4af941853d5e35 (diff) | |
| download | kmi-42451ed4718af3f93770feb201bd023625d69b3a.tar.gz kmi-42451ed4718af3f93770feb201bd023625d69b3a.zip | |
fix warnings on 32bit riscv
+ Will most probably not work on 32bit, but nice to make 'portable'
code.
Diffstat (limited to 'arch/riscv64/source.mk')
| -rw-r--r-- | arch/riscv64/source.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/riscv64/source.mk b/arch/riscv64/source.mk index d1986d4..ce229a4 100644 --- a/arch/riscv64/source.mk +++ b/arch/riscv64/source.mk @@ -4,7 +4,8 @@ INIT_SOURCES += arch/riscv64/init/*.[cS] CLEANUP_CMD := ./arch/riscv64/conf/rmimage.sh -ARCH_FLAGS := -mcmodel=medany +ARCH_CFLAGS := -mcmodel=medany -fno-strict-aliasing +ARCH_LDFLAGS := # llvm compilation doesn't seem to work, either bfd reads the object files wrong # and outputs incorrect symbols or lld handles relocations in a dumb way. Only |
