diff options
-rw-r--r-- | Config.in | 1 | ||||
-rw-r--r-- | Makefile.flags | 9 |
2 files changed, 9 insertions, 1 deletions
@@ -382,7 +382,6 @@ config WERROR choice prompt "Additional debugging library" default NO_DEBUG_LIB - depends on DEBUG help Using an additional debugging library will make BusyBox become considerable larger and will cause it to run more slowly. You diff --git a/Makefile.flags b/Makefile.flags index b7711f6..487300d 100644 --- a/Makefile.flags +++ b/Makefile.flags @@ -58,4 +58,13 @@ endif ifeq ($(CONFIG_SELINUX),y) LDFLAGS += -lselinux -lsepol endif + +ifeq ($(CONFIG_EFENCE),y) +LDFLAGS += -lefence +endif + +ifeq ($(CONFIG_DMALLOC),y) +LDFLAGS += -ldmalloc +endif + #LDFLAGS += -nostdlib |