mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
29 lines
1.2 KiB
C
29 lines
1.2 KiB
C
#if 0
|
|
/*─────────────────────────────────────────────────────────────────╗
|
|
│ To the extent possible under law, Justine Tunney has waived │
|
|
│ all copyright and related or neighboring rights to this file, │
|
|
│ as it is written in the following disclaimers: │
|
|
│ • http://unlicense.org/ │
|
|
│ • http://creativecommons.org/publicdomain/zero/1.0/ │
|
|
╚─────────────────────────────────────────────────────────────────*/
|
|
#endif
|
|
#include "libc/log/log.h"
|
|
|
|
/**
|
|
* @fileoverview How to print backtraces and cpu state on crash.
|
|
*
|
|
* make -j8 -O o//examples/crashreport.com
|
|
* o//examples/crashreport.com
|
|
*
|
|
* To prevent the GDB GUI from popping up:
|
|
*
|
|
* export GDB=
|
|
* make -j8 -O o//examples/crashreport.com
|
|
* o//examples/crashreport.com
|
|
*/
|
|
|
|
int main(int argc, char *argv[]) {
|
|
volatile int64_t x;
|
|
showcrashreports();
|
|
return 1 / (x = 0);
|
|
}
|