diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-19 17:07:11 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-19 17:07:11 +0200 |
commit | 79c3996e5f2259152696230be4115dfc1e3d8ed6 (patch) | |
tree | b86050a633ab2d7b1c3d697e1f77f64a84803671 | |
parent | b6792f703c715ccfc0854c4e8ee3ca703565f4eb (diff) |
GCC on Apple doesn’t support -ggdb at level 3
-rw-r--r-- | make.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -51,7 +51,11 @@ static char *cflags_req[] = { static char *cflags_dbg[] = { "-fsanitize=address,undefined", +#if __GNUC__ && __APPLE__ + "-ggdb2", +#else "-ggdb3", +#endif "-O0", }; |