diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/conf_post.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/conf_post.h b/src/conf_post.h index 4fc0428df5a..1462bd16c75 100644 --- a/src/conf_post.h +++ b/src/conf_post.h | |||
| @@ -302,6 +302,12 @@ extern int emacs_setenv_TZ (char const *); | |||
| 302 | # define ATTRIBUTE_NO_SANITIZE_ADDRESS | 302 | # define ATTRIBUTE_NO_SANITIZE_ADDRESS |
| 303 | #endif | 303 | #endif |
| 304 | 304 | ||
| 305 | /* gcc -fsanitize=address does not work with vfork in Fedora 25 x86-64. | ||
| 306 | For now, assume that this problem occurs on all platforms. */ | ||
| 307 | #if ADDRESS_SANITIZER && !defined vfork | ||
| 308 | # define vfork fork | ||
| 309 | #endif | ||
| 310 | |||
| 305 | /* Some versions of GNU/Linux define noinline in their headers. */ | 311 | /* Some versions of GNU/Linux define noinline in their headers. */ |
| 306 | #ifdef noinline | 312 | #ifdef noinline |
| 307 | #undef noinline | 313 | #undef noinline |