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>
* 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.
* 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.
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)
LDLIBS += --no-whole-archive
-endif # ifeq ($(NO_AUTOLIBS),)
-
LDLIBS += $(CPU_LDLIBS)
.PHONY: all