bigger initial map when LTO

This commit is contained in:
van Hauser
2020-05-11 10:45:20 +02:00
parent 50a63777ec
commit 41f6aa7940
3 changed files with 20 additions and 17 deletions

View File

@ -63,7 +63,11 @@
is used for instrumentation output before __afl_map_shm() has a chance to
run. It will end up as .comm, so it shouldn't be too wasteful. */
u8 __afl_area_initial[MAP_SIZE];
#ifdef AFL_REAL_LD
u8 __afl_area_initial[256000];
#else
u8 __afl_area_initial[MAP_SIZE];
#endif
u8 *__afl_area_ptr = __afl_area_initial;
u8 *__afl_dictionary;