mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-29 11:58:45 +00:00
It hasn't been helpful enough to be justify the maintenance burden. What actually does help is mprotect(), kprintf(), --ftrace and --strace which can always be counted upon to work correctly. We aren't losing much with this change. Support for ASAN on AARCH64 was never implemented. Applying ASAN to the core libc runtimes was disabled many months ago. If there is some way to have an ASAN runtime for user programs that is less invasive we can potentially consider reintroducing support. But now is premature.
12 lines
366 B
C
12 lines
366 B
C
#ifndef COSMOPOLITAN_LIBC_INTRIN_LEAKY_INTERNAL_H_
|
|
#define COSMOPOLITAN_LIBC_INTRIN_LEAKY_INTERNAL_H_
|
|
#include "libc/dce.h"
|
|
COSMOPOLITAN_C_START_
|
|
|
|
#define IGNORE_LEAKS(FUNC)
|
|
|
|
extern intptr_t _leaky_end[] __attribute__((__weak__));
|
|
extern intptr_t _leaky_start[] __attribute__((__weak__));
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_INTRIN_LEAKY_INTERNAL_H_ */
|