Compare commits

..

No commits in common. "ff71a50db7f057350405535ef8d08f7460aac832" and "31df6146bfe0f9431c823afa583ad71b2289560b" have entirely different histories.

5 changed files with 5 additions and 9 deletions

View File

@ -20,13 +20,13 @@ bldtst: buildtest.c arch/*.c
gcc -static -nostdlib -Wno-builtin-declaration-mismatch -fno-stack-protector -o bldtst buildtest.c arch/*.c gcc -static -nostdlib -Wno-builtin-declaration-mismatch -fno-stack-protector -o bldtst buildtest.c arch/*.c
bldtst_llvm: buildtest.c arch/*.c bldtst_llvm: buildtest.c arch/*.c
clang -nostdlib -Wno-incompatible-library-redeclaration -static -fuse-ld=lld -fno-stack-protector -o bldtst_llvm buildtest.c arch/*.c clang -nostdlib -static -fuse-ld=lld -fno-stack-protector -o bldtst_llvm buildtest.c arch/*.c
bldtst_x64: buildtest.c arch/x86_64.c bldtst_x64: buildtest.c arch/x86_64.c
clang --target=x86_64-linux-gnu -nostdlib -Wno-incompatible-library-redeclaration -static -fuse-ld=lld -fno-stack-protector -o bldtst_x64 buildtest.c arch/x86_64.c clang --target=x86_64-linux-gnu -nostdlib -static -fuse-ld=lld -fno-stack-protector -o bldtst_x64 buildtest.c arch/x86_64.c
bldtst_aarch64: buildtest.c bldtst_aarch64: buildtest.c
clang --target=aarch64-linux-gnu -nostdlib -Wno-incompatible-library-redeclaration -static -fuse-ld=lld -fno-stack-protector -o bldtst_aarch64 buildtest.c arch/aarch64.c clang --target=aarch64-linux-gnu -nostdlib -static -fuse-ld=lld -fno-stack-protector -o bldtst_aarch64 buildtest.c arch/aarch64.c
bldtst_mips32: buildtest.c bldtst_mips32: buildtest.c
clang --target=mips-linux-gnu -nostdlib -Wno-incompatible-library-redeclaration -static -fuse-ld=lld -fno-stack-protector -fno-pic -o bldtst_mips32 buildtest.c arch/mips.c clang --target=mips-linux-gnu -nostdlib -static -fuse-ld=lld -fno-stack-protector -fno-pic -o bldtst_mips32 buildtest.c arch/mips.c

View File

@ -9,7 +9,6 @@ void exit(int8_t status){
: "r" ((long)status) // Input operand: status : "r" ((long)status) // Input operand: status
: "x0", "x8" // Clobbered registers : "x0", "x8" // Clobbered registers
); );
for (;;);
} }
intptr_t write(int32_t fd, const void* buf, intptr_t size){ intptr_t write(int32_t fd, const void* buf, intptr_t size){

View File

@ -10,7 +10,6 @@ void exit(int8_t status){
: "r" (status) : "r" (status)
: "a0", "v0" : "a0", "v0"
); );
for(;;);
} }
intptr_t write(int32_t fd, const void* buf, intptr_t size){ intptr_t write(int32_t fd, const void* buf, intptr_t size){

View File

@ -9,7 +9,6 @@ void exit(int8_t status) {
: "a"(SYS_EXIT), "D"(status) : "a"(SYS_EXIT), "D"(status)
: :
); );
for(;;);
} }
#define SYS_WRITE 1 #define SYS_WRITE 1

1
sys.h
View File

@ -16,6 +16,5 @@ uint32_t fork();
void *memset(void* s, int c, unsigned long n) { void *memset(void* s, int c, unsigned long n) {
int8_t* mem = s; int8_t* mem = s;
for(long int i = 0; i < n; ++i) mem[i] = c; for(long int i = 0; i < n; ++i) mem[i] = c;
return s;
} }
#endif // !MINIMALSYS_H #endif // !MINIMALSYS_H