mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-29 08:42:28 +00:00
Improve mkdeps
Our makefile generator now accepts badly formatted include lines. It's now more hermetic with better error checking in the cosmo repo, and it can be configured to not be hermetic at all.
This commit is contained in:
parent
241f949540
commit
d2f49ca175
69 changed files with 466 additions and 533 deletions
|
@ -91,7 +91,6 @@ void ShowCrashReports(void);
|
|||
int ftrace_install(void);
|
||||
int ftrace_enabled(int);
|
||||
int strace_enabled(int);
|
||||
bool strace_enter(void);
|
||||
void __print_maps(void);
|
||||
void __printargs(const char *);
|
||||
/* builtin sh-like system/popen dsl */
|
||||
|
@ -139,10 +138,10 @@ __funline int __trace_disabled(int x) {
|
|||
return 0;
|
||||
}
|
||||
#ifndef FTRACE
|
||||
#define ftrace_enabled __trace_disabled
|
||||
#define ftrace_enabled(...) __trace_disabled(__VA_ARGS__)
|
||||
#endif
|
||||
#ifndef SYSDEBUG
|
||||
#define strace_enabled __trace_disabled
|
||||
#define strace_enabled(...) __trace_disabled(__VA_ARGS__)
|
||||
#endif
|
||||
#endif /* _COSMO_SOURCE */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue