2021-05-17 11:22:07 +08:00
|
|
|
# only-linux
|
|
|
|
# ignore-32bit
|
|
|
|
|
2022-08-23 00:00:00 +00:00
|
|
|
include ../tools.mk
|
2021-05-17 11:22:07 +08:00
|
|
|
|
|
|
|
all:
|
2024-06-12 13:16:28 -07:00
|
|
|
# --target $(TARGET) ensures the right gcc flags are used for cross compilation
|
|
|
|
$(RUSTC) --target $(TARGET) eh_frame-terminator.rs
|
2021-05-17 11:22:07 +08:00
|
|
|
$(call RUN,eh_frame-terminator) | $(CGREP) '1122334455667788'
|
|
|
|
objdump --dwarf=frames $(TMPDIR)/eh_frame-terminator | $(CGREP) 'ZERO terminator'
|