-
I've pulled down the repo on my local machine and am attempting to make the the examples from The output of
I haven't edited the Makefile at all. What could be causing the Invalid Argument error? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I found this e-mail thread: https://lore.kernel.org/bpf/[email protected]/ It was pointed out that the
Currently using Clang 11.X, and passing |
Beta Was this translation helpful? Give feedback.
I found this e-mail thread: https://lore.kernel.org/bpf/[email protected]/
It was pointed out that the
.eh_frame
section shouldn't exist in these bpf object files. But examining my object files showed its existence:Currently using Clang 11.X, and passing
-fno-asynchronous-unwind-tables
into the clang command solved this for me!