mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-14 10:18:02 +00:00
Make some minor touchups for nightlies
This commit is contained in:
parent
3265324e00
commit
e9272f03fb
4 changed files with 5 additions and 3 deletions
|
@ -659,8 +659,8 @@ __attribute__((__noreturn__)) void ApeLoader(long di, long *sp, char dl,
|
||||||
}
|
}
|
||||||
|
|
||||||
// get syscall function pointer
|
// get syscall function pointer
|
||||||
if (handoff && handoff->syscall) {
|
if (handoff && handoff->systemcall) {
|
||||||
syscall = handoff->syscall;
|
syscall = handoff->systemcall;
|
||||||
} else {
|
} else {
|
||||||
syscall = __syscall_loader;
|
syscall = __syscall_loader;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ struct ApeLoader {
|
||||||
int os;
|
int os;
|
||||||
char *prog;
|
char *prog;
|
||||||
char *page;
|
char *page;
|
||||||
void *syscall;
|
void *systemcall;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* COSMOPOLITAN_APE_LOADER_H_ */
|
#endif /* COSMOPOLITAN_APE_LOADER_H_ */
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#ifndef COSMOPOLITAN_LIBC_LOG_LIBFATAL_INTERNAL_H_
|
#ifndef COSMOPOLITAN_LIBC_LOG_LIBFATAL_INTERNAL_H_
|
||||||
#define COSMOPOLITAN_LIBC_LOG_LIBFATAL_INTERNAL_H_
|
#define COSMOPOLITAN_LIBC_LOG_LIBFATAL_INTERNAL_H_
|
||||||
|
#include "libc/calls/calls.h"
|
||||||
#include "libc/dce.h"
|
#include "libc/dce.h"
|
||||||
#include "libc/macros.internal.h"
|
#include "libc/macros.internal.h"
|
||||||
#include "libc/nt/runtime.h"
|
#include "libc/nt/runtime.h"
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
#-*-mode:makefile-gmake;indent-tabs-mode:t;tab-width:8;coding:utf-8-*-┐
|
||||||
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
|
#───vi: set et ft=make ts=8 tw=8 fenc=utf-8 :vi───────────────────────┘
|
||||||
|
|
||||||
|
o/$(MODE)/test/libc/release/cosmopolitan.zip: .UNSANDBOXED = 1
|
||||||
o/$(MODE)/test/libc/release/cosmopolitan.zip: \
|
o/$(MODE)/test/libc/release/cosmopolitan.zip: \
|
||||||
o/cosmopolitan.h \
|
o/cosmopolitan.h \
|
||||||
o/$(MODE)/ape/public/ape.lds \
|
o/$(MODE)/ape/public/ape.lds \
|
||||||
|
|
Loading…
Reference in a new issue