| Index: Makefile.standalone
|
| diff --git a/Makefile.standalone b/Makefile.standalone
|
| index c39b926194ce44754bf00b81434619e2562a4085..85fb91f7f6fc0180c12d912f6b0ca95a2ece97d0 100644
|
| --- a/Makefile.standalone
|
| +++ b/Makefile.standalone
|
| @@ -102,6 +102,12 @@ ifdef TSAN
|
| LD_EXTRA += -fsanitize=thread
|
| endif
|
|
|
| +ifdef ASAN
|
| + OBJDIR := $(OBJDIR)+ASan
|
| + CXX_EXTRA += -fsanitize=address
|
| + LD_EXTRA += -fsanitize=address
|
| +endif
|
| +
|
| SB_OBJDIR := $(OBJDIR)+Sandboxed
|
|
|
| $(info -----------------------------------------------)
|
|
|