mk: remove NO_AUTOLIBS option
authorKeith Wiles <keith.wiles@intel.com>
Fri, 1 May 2015 14:29:47 +0000 (09:29 -0500)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 12 May 2015 13:13:15 +0000 (15:13 +0200)
NO_AUTOLIBS is not required as it was not used or defined in the config files.

Signed-off-by: Keith Wiles <keith.wiles@intel.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
doc/guides/prog_guide/build_app.rst
doc/guides/prog_guide/dev_kit_build_system.rst
mk/rte.app.mk

index d4a3261..138330a 100644 (file)
@@ -124,5 +124,3 @@ chapter for details.
 *   CPPFLAGS: The flags to use to provide flags to the C preprocessor (only useful when assembling .S files)
 
 *   LDLIBS: A list of libraries to link with (for example, -L /path/to/libfoo - lfoo)
-
-*   NO_AUTOLIBS: If set, the libraries provided by the framework will not be included in the LDLIBS variable automatically.
index 5bfef58..04f1d4e 100644 (file)
@@ -407,8 +407,6 @@ Variables that Can be Set/Overridden by the User in a Makefile or Command Line
 
 *   LDFLAGS_my_app: Specific flags to add when linking my_app.
 
-*   NO_AUTOLIBS: If set, the libraries provided by the framework will not be included in the LDLIBS variable automatically.
-
 *   EXTRA_CFLAGS: The content of this variable is appended after CFLAGS when compiling.
 
 *   EXTRA_LDFLAGS: The content of this variable is appended after LDFLAGS when linking.
index 62a76ae..af8a1b0 100644 (file)
@@ -54,11 +54,8 @@ endif
 LDLIBS += -L$(RTE_SDK_BIN)/lib
 
 #
-# Include libraries depending on config if NO_AUTOLIBS is not set
 # Order is important: from higher level to lower level
 #
-ifeq ($(NO_AUTOLIBS),)
-
 LDLIBS += --whole-archive
 
 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
@@ -265,8 +262,6 @@ LDLIBS += --end-group
 
 LDLIBS += --no-whole-archive
 
-endif # ifeq ($(NO_AUTOLIBS),)
-
 LDLIBS += $(CPU_LDLIBS)
 
 .PHONY: all