| Index: Makefile.standalone
|
| diff --git a/Makefile.standalone b/Makefile.standalone
|
| index 746d216208d0b2a44bd29ab67c931e4cf2ddba99..233b707b7c230362d9459bc1b12d221ef7f7db68 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 -----------------------------------------------)
|
|
|