macho: base files

This commit is contained in:
Philip Craig
2023-10-23 16:31:06 +10:00
parent 86bf162a75
commit 1fd5fb4b4e
8 changed files with 10 additions and 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
+6
View File
@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello, world");
return 0;
}
Executable
+4
View File
@@ -0,0 +1,4 @@
#!/bin/sh
clang -c base.c -o base.o
clang base.c -o base
clang -fdebug-prefix-map=`pwd`=/object/testfiles/elf -g -c base.c -o base-debug.o