Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
this is my dir tree
$ tree . ├── build │ └── linux │ └── x86_64 │ └── debug ├── inc │ ├── debug.h │ ├── elfinfo.h │ └── types.h ├── README.md ├── shellcode │ ├── prelude.S │ └── shellcode.S ├── src │ ├── elfinfo.c │ ├── main.c │ └── prelude_inc.S └── xmake.lua
I want shellcode/prelude.S will be compiled into prelode.bin independently. and then use objcopy to get a raw binary.
But I found it will only add a
.o
file if I add a target entry.Beta Was this translation helpful? Give feedback.
All reactions