[dpdk-dev] [RFC PATCH] Simplify the ifdefs in rte.app.mk.

2015-04-29 Thread Wiles, Keith


On 4/29/15, 9:09 AM, "Wiles, Keith"  wrote:

>
>
>On 4/29/15, 3:04 AM, "Gonzalez Monroy, Sergio"
> wrote:
>
>>On 28/04/2015 17:50, Wiles, Keith wrote:
>>> Hi Sergio
>>>
>>> On 4/28/15, 11:25 AM, "Gonzalez Monroy, Sergio"
>>>  wrote:
>>>
 On 28/04/2015 16:21, Keith Wiles wrote:
> Trying to simplify the ifdefs in rte.app.mk to make the code
> more readable and maintainable by moving LDLIBS variable to use
> the same style as LDLIBS-y being used in the rest of the code.
>
> Signed-off-by: Keith Wiles 
> ---
 +1

 Patch looks good, just a few nits:
>mk/rte.app.mk | 253
> ++
>mk/rte.hostapp.mk |   4 +-
>mk/rte.shared.mk  |  12 +--
>3 files changed, 74 insertions(+), 195 deletions(-)
>
> diff --git a/mk/rte.app.mk b/mk/rte.app.mk
> index 62a76ae..af38975 100644
> --- a/mk/rte.app.mk
> +++ b/mk/rte.app.mk
> @@ -1,7 +1,7 @@
>#   BSD LICENSE
>#
> -#   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
> -#   Copyright(c) 2014 6WIND S.A.
> +#   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
> +#   Copyright(c) 2015 6WIND S.A.
>#   All rights reserved.
>#
>#   Redistribution and use in source and binary forms, with or
>without
> @@ -51,7 +51,7 @@ LDSCRIPT = $(RTE_LDSCRIPT)
>endif
>
># default path for libs
> -LDLIBS += -L$(RTE_SDK_BIN)/lib
> +LDLIBS-y = -L$(RTE_SDK_BIN)/lib
>
 I think we should keep the current value of LDLIBS.
 Some apps (ie. examples/dpdk_qat ) preset LDLIBS before including
 rte.app.mk.
>>> I just modified the example apps to use a new VARIABLE called
>>>EXTRA_LDLIBS
>>> instead and added it towards the bottom of rte.app.mk. I think adding
>>>the
>>> EXTRA_LDLIBS is the right solution instead of using LDLIBS IMO.
>>Fair enough :)
>>
>>I suppose is semantics, and I may be wrong here, but my understanding
>>was that EXTRA_ vars were to be used from the command line to pass
>>additional flags and/or override certain default flags, and that
>>CFLAGS/LDFLAGS/LDLIBS were used from each app/example makefile to
>>specify their own flags.
>>
>>IMO we could achieve the correct order (ie. example/app
>>CFLAGS/LDFLAGS/LDLIBS being added at the end to override default flags)
>>without using EXTRA_ vars from makefiles. Regarding this patch it
>>would be pretty simple by just adding LDLIBS at the end of LDLIBS-y.
>
>Does anyone else have an opinion about EXTRA_XXX?
>
>I just did not realize the EXTRA_XXX was only for command line, personally
>I would have preferred keeping .mk internal variables internal and have
>external variables to augment the internal variables instead of using the
>internal ones in the Makefiles. Someone could abuse the internal
>variables.
>
>Using the EXTRA_XXX with a ?+=? should be reasonable, correct?
>
>Let me know which way I need to update the patch.

Bruce just pointed to the following
http://dpdk.org/doc/guides/prog_guide/dev_kit_build_system.html session
28.3.6

It states the EXTRA_XXX can be used on command line or Makefiles.

Then I just need to send my patch with the corrected version number,
correct?
>
>Regards,
>++Keith
>>
>>Sergio
>#
># Include libraries depending on config if NO_AUTOLIBS is not set
> @@ -59,215 +59,94 @@ LDLIBS += -L$(RTE_SDK_BIN)/lib
>#
>ifeq ($(NO_AUTOLIBS),)
>
> -LDLIBS += --whole-archive
> +LDLIBS-y += --whole-archive
>
> -ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
> -LDLIBS += -l$(RTE_LIBNAME)
> -endif
> +LDLIBS-CONFIG_RTE_BUILD_COMBINE_LIBS)+= -l$(RTE_LIBNAME)
>
 I think here is missing $( before CONFIG.
>>> Ooops :-)
>ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
>
> -ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
> -LDLIBS += -lrte_distributor
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
> -LDLIBS += -lrte_reorder
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
> -LDLIBS += -lrte_kni
> -endif
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
> -LDLIBS += -lrte_ivshmem
> -endif
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
> -LDLIBS += -lrte_pipeline
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
> -LDLIBS += -lrte_table
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
> -LDLIBS += -lrte_port
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
> -LDLIBS += -lrte_timer
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
> -LDLIBS += -lrte_hash
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
> -LDLIBS += -lrte_jobstats
> -endif
> -
> -ifeq 

[dpdk-dev] [RFC PATCH] Simplify the ifdefs in rte.app.mk.

2015-04-29 Thread Wiles, Keith


On 4/29/15, 3:04 AM, "Gonzalez Monroy, Sergio"
 wrote:

>On 28/04/2015 17:50, Wiles, Keith wrote:
>> Hi Sergio
>>
>> On 4/28/15, 11:25 AM, "Gonzalez Monroy, Sergio"
>>  wrote:
>>
>>> On 28/04/2015 16:21, Keith Wiles wrote:
 Trying to simplify the ifdefs in rte.app.mk to make the code
 more readable and maintainable by moving LDLIBS variable to use
 the same style as LDLIBS-y being used in the rest of the code.

 Signed-off-by: Keith Wiles 
 ---
>>> +1
>>>
>>> Patch looks good, just a few nits:
mk/rte.app.mk | 253
 ++
mk/rte.hostapp.mk |   4 +-
mk/rte.shared.mk  |  12 +--
3 files changed, 74 insertions(+), 195 deletions(-)

 diff --git a/mk/rte.app.mk b/mk/rte.app.mk
 index 62a76ae..af38975 100644
 --- a/mk/rte.app.mk
 +++ b/mk/rte.app.mk
 @@ -1,7 +1,7 @@
#   BSD LICENSE
#
 -#   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
 -#   Copyright(c) 2014 6WIND S.A.
 +#   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
 +#   Copyright(c) 2015 6WIND S.A.
#   All rights reserved.
#
#   Redistribution and use in source and binary forms, with or
without
 @@ -51,7 +51,7 @@ LDSCRIPT = $(RTE_LDSCRIPT)
endif

# default path for libs
 -LDLIBS += -L$(RTE_SDK_BIN)/lib
 +LDLIBS-y = -L$(RTE_SDK_BIN)/lib

>>> I think we should keep the current value of LDLIBS.
>>> Some apps (ie. examples/dpdk_qat ) preset LDLIBS before including
>>> rte.app.mk.
>> I just modified the example apps to use a new VARIABLE called
>>EXTRA_LDLIBS
>> instead and added it towards the bottom of rte.app.mk. I think adding
>>the
>> EXTRA_LDLIBS is the right solution instead of using LDLIBS IMO.
>Fair enough :)
>
>I suppose is semantics, and I may be wrong here, but my understanding
>was that EXTRA_ vars were to be used from the command line to pass
>additional flags and/or override certain default flags, and that
>CFLAGS/LDFLAGS/LDLIBS were used from each app/example makefile to
>specify their own flags.
>
>IMO we could achieve the correct order (ie. example/app
>CFLAGS/LDFLAGS/LDLIBS being added at the end to override default flags)
>without using EXTRA_ vars from makefiles. Regarding this patch it
>would be pretty simple by just adding LDLIBS at the end of LDLIBS-y.

Does anyone else have an opinion about EXTRA_XXX?

I just did not realize the EXTRA_XXX was only for command line, personally
I would have preferred keeping .mk internal variables internal and have
external variables to augment the internal variables instead of using the
internal ones in the Makefiles. Someone could abuse the internal variables.

Using the EXTRA_XXX with a ?+=? should be reasonable, correct?

Let me know which way I need to update the patch.

Regards,
++Keith
>
>Sergio
#
# Include libraries depending on config if NO_AUTOLIBS is not set
 @@ -59,215 +59,94 @@ LDLIBS += -L$(RTE_SDK_BIN)/lib
#
ifeq ($(NO_AUTOLIBS),)

 -LDLIBS += --whole-archive
 +LDLIBS-y += --whole-archive

 -ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
 -LDLIBS += -l$(RTE_LIBNAME)
 -endif
 +LDLIBS-CONFIG_RTE_BUILD_COMBINE_LIBS) += -l$(RTE_LIBNAME)

>>> I think here is missing $( before CONFIG.
>> Ooops :-)
ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)

 -ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
 -LDLIBS += -lrte_distributor
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
 -LDLIBS += -lrte_reorder
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
 -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
 -LDLIBS += -lrte_kni
 -endif
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
 -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
 -LDLIBS += -lrte_ivshmem
 -endif
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
 -LDLIBS += -lrte_pipeline
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
 -LDLIBS += -lrte_table
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
 -LDLIBS += -lrte_port
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
 -LDLIBS += -lrte_timer
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
 -LDLIBS += -lrte_hash
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
 -LDLIBS += -lrte_jobstats
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
 -LDLIBS += -lrte_lpm
 -endif
 -
 -ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
 -LDLIBS += -lrte_power
 -endif
 +LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR)   += -lrte_distributor
 +LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER)   += -lrte_reorder

 -ifeq ($(CONFIG_RTE_LIBRTE_ACL),y)
 -LDLIBS += -lrte_acl
 +ifeq ($( CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
 

[dpdk-dev] [RFC PATCH] Simplify the ifdefs in rte.app.mk.

2015-04-29 Thread Gonzalez Monroy, Sergio
On 28/04/2015 17:50, Wiles, Keith wrote:
> Hi Sergio
>
> On 4/28/15, 11:25 AM, "Gonzalez Monroy, Sergio"
>  wrote:
>
>> On 28/04/2015 16:21, Keith Wiles wrote:
>>> Trying to simplify the ifdefs in rte.app.mk to make the code
>>> more readable and maintainable by moving LDLIBS variable to use
>>> the same style as LDLIBS-y being used in the rest of the code.
>>>
>>> Signed-off-by: Keith Wiles 
>>> ---
>> +1
>>
>> Patch looks good, just a few nits:
>>>mk/rte.app.mk | 253
>>> ++
>>>mk/rte.hostapp.mk |   4 +-
>>>mk/rte.shared.mk  |  12 +--
>>>3 files changed, 74 insertions(+), 195 deletions(-)
>>>
>>> diff --git a/mk/rte.app.mk b/mk/rte.app.mk
>>> index 62a76ae..af38975 100644
>>> --- a/mk/rte.app.mk
>>> +++ b/mk/rte.app.mk
>>> @@ -1,7 +1,7 @@
>>>#   BSD LICENSE
>>>#
>>> -#   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
>>> -#   Copyright(c) 2014 6WIND S.A.
>>> +#   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
>>> +#   Copyright(c) 2015 6WIND S.A.
>>>#   All rights reserved.
>>>#
>>>#   Redistribution and use in source and binary forms, with or without
>>> @@ -51,7 +51,7 @@ LDSCRIPT = $(RTE_LDSCRIPT)
>>>endif
>>>
>>># default path for libs
>>> -LDLIBS += -L$(RTE_SDK_BIN)/lib
>>> +LDLIBS-y = -L$(RTE_SDK_BIN)/lib
>>>
>> I think we should keep the current value of LDLIBS.
>> Some apps (ie. examples/dpdk_qat ) preset LDLIBS before including
>> rte.app.mk.
> I just modified the example apps to use a new VARIABLE called EXTRA_LDLIBS
> instead and added it towards the bottom of rte.app.mk. I think adding the
> EXTRA_LDLIBS is the right solution instead of using LDLIBS IMO.
Fair enough :)

I suppose is semantics, and I may be wrong here, but my understanding 
was that EXTRA_ vars were to be used from the command line to pass 
additional flags and/or override certain default flags, and that 
CFLAGS/LDFLAGS/LDLIBS were used from each app/example makefile to 
specify their own flags.

IMO we could achieve the correct order (ie. example/app 
CFLAGS/LDFLAGS/LDLIBS being added at the end to override default flags) 
without using EXTRA_ vars from makefiles. Regarding this patch it 
would be pretty simple by just adding LDLIBS at the end of LDLIBS-y.

Sergio
>>>#
>>># Include libraries depending on config if NO_AUTOLIBS is not set
>>> @@ -59,215 +59,94 @@ LDLIBS += -L$(RTE_SDK_BIN)/lib
>>>#
>>>ifeq ($(NO_AUTOLIBS),)
>>>
>>> -LDLIBS += --whole-archive
>>> +LDLIBS-y += --whole-archive
>>>
>>> -ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
>>> -LDLIBS += -l$(RTE_LIBNAME)
>>> -endif
>>> +LDLIBS-CONFIG_RTE_BUILD_COMBINE_LIBS)  += -l$(RTE_LIBNAME)
>>>
>> I think here is missing $( before CONFIG.
> Ooops :-)
>>>ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
>>>
>>> -ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
>>> -LDLIBS += -lrte_distributor
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
>>> -LDLIBS += -lrte_reorder
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
>>> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>>> -LDLIBS += -lrte_kni
>>> -endif
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
>>> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>>> -LDLIBS += -lrte_ivshmem
>>> -endif
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
>>> -LDLIBS += -lrte_pipeline
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
>>> -LDLIBS += -lrte_table
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
>>> -LDLIBS += -lrte_port
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
>>> -LDLIBS += -lrte_timer
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
>>> -LDLIBS += -lrte_hash
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
>>> -LDLIBS += -lrte_jobstats
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
>>> -LDLIBS += -lrte_lpm
>>> -endif
>>> -
>>> -ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
>>> -LDLIBS += -lrte_power
>>> -endif
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR)+= -lrte_distributor
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER)+= -lrte_reorder
>>>
>>> -ifeq ($(CONFIG_RTE_LIBRTE_ACL),y)
>>> -LDLIBS += -lrte_acl
>>> +ifeq ($( CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_KNI)+= -lrte_kni
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_IVSHMEM)+= -lrte_ivshmem
>>>endif
>>>
>>> -ifeq ($(CONFIG_RTE_LIBRTE_METER),y)
>>> -LDLIBS += -lrte_meter
>>> -endif
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_PIPELINE)   += -lrte_pipeline
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_TABLE)  += -lrte_table
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_PORT)   += -lrte_port
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_TIMER)  += -lrte_timer
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_HASH)   += -lrte_hash
>>> +LDLIBS-$(CONFIG_RTE_LIBRTE_JOBSTATS)   += -lrte_jobstats
>>> 

[dpdk-dev] [RFC PATCH] Simplify the ifdefs in rte.app.mk.

2015-04-28 Thread Gonzalez Monroy, Sergio
On 28/04/2015 16:21, Keith Wiles wrote:
> Trying to simplify the ifdefs in rte.app.mk to make the code
> more readable and maintainable by moving LDLIBS variable to use
> the same style as LDLIBS-y being used in the rest of the code.
>
> Signed-off-by: Keith Wiles 
> ---
+1

Patch looks good, just a few nits:
>   mk/rte.app.mk | 253 
> ++
>   mk/rte.hostapp.mk |   4 +-
>   mk/rte.shared.mk  |  12 +--
>   3 files changed, 74 insertions(+), 195 deletions(-)
>
> diff --git a/mk/rte.app.mk b/mk/rte.app.mk
> index 62a76ae..af38975 100644
> --- a/mk/rte.app.mk
> +++ b/mk/rte.app.mk
> @@ -1,7 +1,7 @@
>   #   BSD LICENSE
>   #
> -#   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
> -#   Copyright(c) 2014 6WIND S.A.
> +#   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
> +#   Copyright(c) 2015 6WIND S.A.
>   #   All rights reserved.
>   #
>   #   Redistribution and use in source and binary forms, with or without
> @@ -51,7 +51,7 @@ LDSCRIPT = $(RTE_LDSCRIPT)
>   endif
>   
>   # default path for libs
> -LDLIBS += -L$(RTE_SDK_BIN)/lib
> +LDLIBS-y = -L$(RTE_SDK_BIN)/lib
>   
I think we should keep the current value of LDLIBS.
Some apps (ie. examples/dpdk_qat ) preset LDLIBS before including 
rte.app.mk.

>   #
>   # Include libraries depending on config if NO_AUTOLIBS is not set
> @@ -59,215 +59,94 @@ LDLIBS += -L$(RTE_SDK_BIN)/lib
>   #
>   ifeq ($(NO_AUTOLIBS),)
>   
> -LDLIBS += --whole-archive
> +LDLIBS-y += --whole-archive
>   
> -ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
> -LDLIBS += -l$(RTE_LIBNAME)
> -endif
> +LDLIBS-CONFIG_RTE_BUILD_COMBINE_LIBS)+= -l$(RTE_LIBNAME)
>   
I think here is missing $( before CONFIG.

>   ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
>   
> -ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
> -LDLIBS += -lrte_distributor
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
> -LDLIBS += -lrte_reorder
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
> -LDLIBS += -lrte_kni
> -endif
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
> -LDLIBS += -lrte_ivshmem
> -endif
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
> -LDLIBS += -lrte_pipeline
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
> -LDLIBS += -lrte_table
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
> -LDLIBS += -lrte_port
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
> -LDLIBS += -lrte_timer
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
> -LDLIBS += -lrte_hash
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
> -LDLIBS += -lrte_jobstats
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
> -LDLIBS += -lrte_lpm
> -endif
> -
> -ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
> -LDLIBS += -lrte_power
> -endif
> +LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR)  += -lrte_distributor
> +LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER)  += -lrte_reorder
>   
> -ifeq ($(CONFIG_RTE_LIBRTE_ACL),y)
> -LDLIBS += -lrte_acl
> +ifeq ($( CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
> +LDLIBS-$(CONFIG_RTE_LIBRTE_KNI)  += -lrte_kni
> +LDLIBS-$(CONFIG_RTE_LIBRTE_IVSHMEM)  += -lrte_ivshmem
>   endif
>   
> -ifeq ($(CONFIG_RTE_LIBRTE_METER),y)
> -LDLIBS += -lrte_meter
> -endif
> +LDLIBS-$(CONFIG_RTE_LIBRTE_PIPELINE) += -lrte_pipeline
> +LDLIBS-$(CONFIG_RTE_LIBRTE_TABLE)+= -lrte_table
> +LDLIBS-$(CONFIG_RTE_LIBRTE_PORT) += -lrte_port
> +LDLIBS-$(CONFIG_RTE_LIBRTE_TIMER)+= -lrte_timer
> +LDLIBS-$(CONFIG_RTE_LIBRTE_HASH) += -lrte_hash
> +LDLIBS-$(CONFIG_RTE_LIBRTE_JOBSTATS) += -lrte_jobstats
> +LDLIBS-$(CONFIG_RTE_LIBRTE_LPM)  += -lrte_lpm
> +LDLIBS-$(CONFIG_RTE_LIBRTE_POWER)+= -lrte_power
> +LDLIBS-$(CONFIG_RTE_LIBRTE_ACL)  += -lrte_acl
> +LDLIBS-$(CONFIG_RTE_LIBRTE_METER)+= -lrte_meter
>   
> -ifeq ($(CONFIG_RTE_LIBRTE_SCHED),y)
> -LDLIBS += -lrte_sched
> -LDLIBS += -lm
> -LDLIBS += -lrt
> -endif
> +LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)+= -lrte_sched
> +LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)+= -lm
> +LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)+= -lrt
>   
> -ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y)
> -LDLIBS += -lrte_vhost
> -endif
> +LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)+= -lrte_vhost
>   
>   endif # ! CONFIG_RTE_BUILD_COMBINE_LIBS
>   
> -ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
> -LDLIBS += -lpcap
> -endif
> +LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_PCAP) += -lpcap
>   
>   ifeq ($(CONFIG_RTE_LIBRTE_VHOST)$(CONFIG_RTE_LIBRTE_VHOST_USER),yn)
> -LDLIBS += -lfuse
> +LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)+= -lfuse
>   endif
We could remove $(CONFIG_RTE_LIBRTE_VHOST) from the ifeq.

>   
> -ifeq ($(CONFIG_RTE_LIBRTE_MLX4_PMD),y)
> -LDLIBS += -libverbs
> -endif
> 

[dpdk-dev] [RFC PATCH] Simplify the ifdefs in rte.app.mk.

2015-04-28 Thread Wiles, Keith
Hi Sergio

On 4/28/15, 11:25 AM, "Gonzalez Monroy, Sergio"
 wrote:

>On 28/04/2015 16:21, Keith Wiles wrote:
>> Trying to simplify the ifdefs in rte.app.mk to make the code
>> more readable and maintainable by moving LDLIBS variable to use
>> the same style as LDLIBS-y being used in the rest of the code.
>>
>> Signed-off-by: Keith Wiles 
>> ---
>+1
>
>Patch looks good, just a few nits:
>>   mk/rte.app.mk | 253
>>++
>>   mk/rte.hostapp.mk |   4 +-
>>   mk/rte.shared.mk  |  12 +--
>>   3 files changed, 74 insertions(+), 195 deletions(-)
>>
>> diff --git a/mk/rte.app.mk b/mk/rte.app.mk
>> index 62a76ae..af38975 100644
>> --- a/mk/rte.app.mk
>> +++ b/mk/rte.app.mk
>> @@ -1,7 +1,7 @@
>>   #   BSD LICENSE
>>   #
>> -#   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
>> -#   Copyright(c) 2014 6WIND S.A.
>> +#   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
>> +#   Copyright(c) 2015 6WIND S.A.
>>   #   All rights reserved.
>>   #
>>   #   Redistribution and use in source and binary forms, with or without
>> @@ -51,7 +51,7 @@ LDSCRIPT = $(RTE_LDSCRIPT)
>>   endif
>>   
>>   # default path for libs
>> -LDLIBS += -L$(RTE_SDK_BIN)/lib
>> +LDLIBS-y = -L$(RTE_SDK_BIN)/lib
>>   
>I think we should keep the current value of LDLIBS.
>Some apps (ie. examples/dpdk_qat ) preset LDLIBS before including
>rte.app.mk.

I just modified the example apps to use a new VARIABLE called EXTRA_LDLIBS
instead and added it towards the bottom of rte.app.mk. I think adding the
EXTRA_LDLIBS is the right solution instead of using LDLIBS IMO.
>
>>   #
>>   # Include libraries depending on config if NO_AUTOLIBS is not set
>> @@ -59,215 +59,94 @@ LDLIBS += -L$(RTE_SDK_BIN)/lib
>>   #
>>   ifeq ($(NO_AUTOLIBS),)
>>   
>> -LDLIBS += --whole-archive
>> +LDLIBS-y += --whole-archive
>>   
>> -ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
>> -LDLIBS += -l$(RTE_LIBNAME)
>> -endif
>> +LDLIBS-CONFIG_RTE_BUILD_COMBINE_LIBS)   += -l$(RTE_LIBNAME)
>>   
>I think here is missing $( before CONFIG.

Ooops :-)
>
>>   ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
>>   
>> -ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
>> -LDLIBS += -lrte_distributor
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
>> -LDLIBS += -lrte_reorder
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
>> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>> -LDLIBS += -lrte_kni
>> -endif
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
>> -ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>> -LDLIBS += -lrte_ivshmem
>> -endif
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
>> -LDLIBS += -lrte_pipeline
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
>> -LDLIBS += -lrte_table
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
>> -LDLIBS += -lrte_port
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
>> -LDLIBS += -lrte_timer
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
>> -LDLIBS += -lrte_hash
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
>> -LDLIBS += -lrte_jobstats
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
>> -LDLIBS += -lrte_lpm
>> -endif
>> -
>> -ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
>> -LDLIBS += -lrte_power
>> -endif
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR) += -lrte_distributor
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER) += -lrte_reorder
>>   
>> -ifeq ($(CONFIG_RTE_LIBRTE_ACL),y)
>> -LDLIBS += -lrte_acl
>> +ifeq ($( CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_KNI) += -lrte_kni
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_IVSHMEM) += -lrte_ivshmem
>>   endif
>>   
>> -ifeq ($(CONFIG_RTE_LIBRTE_METER),y)
>> -LDLIBS += -lrte_meter
>> -endif
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_PIPELINE)+= -lrte_pipeline
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_TABLE)   += -lrte_table
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_PORT)+= -lrte_port
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_TIMER)   += -lrte_timer
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_HASH)+= -lrte_hash
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_JOBSTATS)+= -lrte_jobstats
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_LPM) += -lrte_lpm
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_POWER)   += -lrte_power
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_ACL) += -lrte_acl
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_METER)   += -lrte_meter
>>   
>> -ifeq ($(CONFIG_RTE_LIBRTE_SCHED),y)
>> -LDLIBS += -lrte_sched
>> -LDLIBS += -lm
>> -LDLIBS += -lrt
>> -endif
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)   += -lrte_sched
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)   += -lm
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)   += -lrt
>>   
>> -ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y)
>> -LDLIBS += -lrte_vhost
>> -endif
>> +LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)   += -lrte_vhost
>>   
>>   endif # ! CONFIG_RTE_BUILD_COMBINE_LIBS
>>   
>> 

[dpdk-dev] [RFC PATCH] Simplify the ifdefs in rte.app.mk.

2015-04-28 Thread Wiles, Keith
I have not tested this change more then just building DPDK with GCC.

On 4/28/15, 10:21 AM, "Keith Wiles"  wrote:

>Trying to simplify the ifdefs in rte.app.mk to make the code
>more readable and maintainable by moving LDLIBS variable to use
>the same style as LDLIBS-y being used in the rest of the code.
>
>Signed-off-by: Keith Wiles 
>---
> mk/rte.app.mk | 253
>++
> mk/rte.hostapp.mk |   4 +-
> mk/rte.shared.mk  |  12 +--
> 3 files changed, 74 insertions(+), 195 deletions(-)
>
>diff --git a/mk/rte.app.mk b/mk/rte.app.mk
>index 62a76ae..af38975 100644
>--- a/mk/rte.app.mk
>+++ b/mk/rte.app.mk
>@@ -1,7 +1,7 @@
> #   BSD LICENSE
> #
>-#   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
>-#   Copyright(c) 2014 6WIND S.A.
>+#   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
>+#   Copyright(c) 2015 6WIND S.A.
> #   All rights reserved.
> #
> #   Redistribution and use in source and binary forms, with or without
>@@ -51,7 +51,7 @@ LDSCRIPT = $(RTE_LDSCRIPT)
> endif
> 
> # default path for libs
>-LDLIBS += -L$(RTE_SDK_BIN)/lib
>+LDLIBS-y = -L$(RTE_SDK_BIN)/lib
> 
> #
> # Include libraries depending on config if NO_AUTOLIBS is not set
>@@ -59,215 +59,94 @@ LDLIBS += -L$(RTE_SDK_BIN)/lib
> #
> ifeq ($(NO_AUTOLIBS),)
> 
>-LDLIBS += --whole-archive
>+LDLIBS-y += --whole-archive
> 
>-ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
>-LDLIBS += -l$(RTE_LIBNAME)
>-endif
>+LDLIBS-CONFIG_RTE_BUILD_COMBINE_LIBS) += -l$(RTE_LIBNAME)
> 
> ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
>-LDLIBS += -lrte_distributor
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
>-LDLIBS += -lrte_reorder
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
>-ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>-LDLIBS += -lrte_kni
>-endif
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
>-ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>-LDLIBS += -lrte_ivshmem
>-endif
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
>-LDLIBS += -lrte_pipeline
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
>-LDLIBS += -lrte_table
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
>-LDLIBS += -lrte_port
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
>-LDLIBS += -lrte_timer
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
>-LDLIBS += -lrte_hash
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
>-LDLIBS += -lrte_jobstats
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
>-LDLIBS += -lrte_lpm
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
>-LDLIBS += -lrte_power
>-endif
>+LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR)   += -lrte_distributor
>+LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER)   += -lrte_reorder
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_ACL),y)
>-LDLIBS += -lrte_acl
>+ifeq ($( CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
>+LDLIBS-$(CONFIG_RTE_LIBRTE_KNI)   += -lrte_kni
>+LDLIBS-$(CONFIG_RTE_LIBRTE_IVSHMEM)   += -lrte_ivshmem
> endif
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_METER),y)
>-LDLIBS += -lrte_meter
>-endif
>+LDLIBS-$(CONFIG_RTE_LIBRTE_PIPELINE)  += -lrte_pipeline
>+LDLIBS-$(CONFIG_RTE_LIBRTE_TABLE) += -lrte_table
>+LDLIBS-$(CONFIG_RTE_LIBRTE_PORT)  += -lrte_port
>+LDLIBS-$(CONFIG_RTE_LIBRTE_TIMER) += -lrte_timer
>+LDLIBS-$(CONFIG_RTE_LIBRTE_HASH)  += -lrte_hash
>+LDLIBS-$(CONFIG_RTE_LIBRTE_JOBSTATS)  += -lrte_jobstats
>+LDLIBS-$(CONFIG_RTE_LIBRTE_LPM)   += -lrte_lpm
>+LDLIBS-$(CONFIG_RTE_LIBRTE_POWER) += -lrte_power
>+LDLIBS-$(CONFIG_RTE_LIBRTE_ACL)   += -lrte_acl
>+LDLIBS-$(CONFIG_RTE_LIBRTE_METER) += -lrte_meter
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_SCHED),y)
>-LDLIBS += -lrte_sched
>-LDLIBS += -lm
>-LDLIBS += -lrt
>-endif
>+LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED) += -lrte_sched
>+LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED) += -lm
>+LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED) += -lrt
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y)
>-LDLIBS += -lrte_vhost
>-endif
>+LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST) += -lrte_vhost
> 
> endif # ! CONFIG_RTE_BUILD_COMBINE_LIBS
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
>-LDLIBS += -lpcap
>-endif
>+LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_PCAP)  += -lpcap
> 
> ifeq ($(CONFIG_RTE_LIBRTE_VHOST)$(CONFIG_RTE_LIBRTE_VHOST_USER),yn)
>-LDLIBS += -lfuse
>+LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST) += -lfuse
> endif
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_MLX4_PMD),y)
>-LDLIBS += -libverbs
>-endif
>+LDLIBS-$(CONFIG_RTE_LIBRTE_MLX4_PMD)  += -libverbs
> 
>-LDLIBS += --start-group
>+LDLIBS-y += --start-group
> 
> ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
> 
>-ifeq ($(CONFIG_RTE_LIBRTE_KVARGS),y)
>-LDLIBS += -lrte_kvargs
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_MBUF),y)
>-LDLIBS += -lrte_mbuf
>-endif
>-
>-ifeq ($(CONFIG_RTE_LIBRTE_IP_FRAG),y)
>-LDLIBS += -lrte_ip_frag

[dpdk-dev] [RFC PATCH] Simplify the ifdefs in rte.app.mk.

2015-04-28 Thread Keith Wiles
Trying to simplify the ifdefs in rte.app.mk to make the code
more readable and maintainable by moving LDLIBS variable to use
the same style as LDLIBS-y being used in the rest of the code.

Signed-off-by: Keith Wiles 
---
 mk/rte.app.mk | 253 ++
 mk/rte.hostapp.mk |   4 +-
 mk/rte.shared.mk  |  12 +--
 3 files changed, 74 insertions(+), 195 deletions(-)

diff --git a/mk/rte.app.mk b/mk/rte.app.mk
index 62a76ae..af38975 100644
--- a/mk/rte.app.mk
+++ b/mk/rte.app.mk
@@ -1,7 +1,7 @@
 #   BSD LICENSE
 #
-#   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
-#   Copyright(c) 2014 6WIND S.A.
+#   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
+#   Copyright(c) 2015 6WIND S.A.
 #   All rights reserved.
 #
 #   Redistribution and use in source and binary forms, with or without
@@ -51,7 +51,7 @@ LDSCRIPT = $(RTE_LDSCRIPT)
 endif

 # default path for libs
-LDLIBS += -L$(RTE_SDK_BIN)/lib
+LDLIBS-y = -L$(RTE_SDK_BIN)/lib

 #
 # Include libraries depending on config if NO_AUTOLIBS is not set
@@ -59,215 +59,94 @@ LDLIBS += -L$(RTE_SDK_BIN)/lib
 #
 ifeq ($(NO_AUTOLIBS),)

-LDLIBS += --whole-archive
+LDLIBS-y += --whole-archive

-ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),y)
-LDLIBS += -l$(RTE_LIBNAME)
-endif
+LDLIBS-CONFIG_RTE_BUILD_COMBINE_LIBS)  += -l$(RTE_LIBNAME)

 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)

-ifeq ($(CONFIG_RTE_LIBRTE_DISTRIBUTOR),y)
-LDLIBS += -lrte_distributor
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_REORDER),y)
-LDLIBS += -lrte_reorder
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_KNI),y)
-ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
-LDLIBS += -lrte_kni
-endif
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_IVSHMEM),y)
-ifeq ($(CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
-LDLIBS += -lrte_ivshmem
-endif
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_PIPELINE),y)
-LDLIBS += -lrte_pipeline
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_TABLE),y)
-LDLIBS += -lrte_table
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_PORT),y)
-LDLIBS += -lrte_port
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_TIMER),y)
-LDLIBS += -lrte_timer
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
-LDLIBS += -lrte_hash
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_JOBSTATS),y)
-LDLIBS += -lrte_jobstats
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
-LDLIBS += -lrte_lpm
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_POWER),y)
-LDLIBS += -lrte_power
-endif
+LDLIBS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR)+= -lrte_distributor
+LDLIBS-$(CONFIG_RTE_LIBRTE_REORDER)+= -lrte_reorder

-ifeq ($(CONFIG_RTE_LIBRTE_ACL),y)
-LDLIBS += -lrte_acl
+ifeq ($( CONFIG_RTE_EXEC_ENV_LINUXAPP),y)
+LDLIBS-$(CONFIG_RTE_LIBRTE_KNI)+= -lrte_kni
+LDLIBS-$(CONFIG_RTE_LIBRTE_IVSHMEM)+= -lrte_ivshmem
 endif

-ifeq ($(CONFIG_RTE_LIBRTE_METER),y)
-LDLIBS += -lrte_meter
-endif
+LDLIBS-$(CONFIG_RTE_LIBRTE_PIPELINE)   += -lrte_pipeline
+LDLIBS-$(CONFIG_RTE_LIBRTE_TABLE)  += -lrte_table
+LDLIBS-$(CONFIG_RTE_LIBRTE_PORT)   += -lrte_port
+LDLIBS-$(CONFIG_RTE_LIBRTE_TIMER)  += -lrte_timer
+LDLIBS-$(CONFIG_RTE_LIBRTE_HASH)   += -lrte_hash
+LDLIBS-$(CONFIG_RTE_LIBRTE_JOBSTATS)   += -lrte_jobstats
+LDLIBS-$(CONFIG_RTE_LIBRTE_LPM)+= -lrte_lpm
+LDLIBS-$(CONFIG_RTE_LIBRTE_POWER)  += -lrte_power
+LDLIBS-$(CONFIG_RTE_LIBRTE_ACL)+= -lrte_acl
+LDLIBS-$(CONFIG_RTE_LIBRTE_METER)  += -lrte_meter

-ifeq ($(CONFIG_RTE_LIBRTE_SCHED),y)
-LDLIBS += -lrte_sched
-LDLIBS += -lm
-LDLIBS += -lrt
-endif
+LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)  += -lrte_sched
+LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)  += -lm
+LDLIBS-$(CONFIG_RTE_LIBRTE_SCHED)  += -lrt

-ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y)
-LDLIBS += -lrte_vhost
-endif
+LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)  += -lrte_vhost

 endif # ! CONFIG_RTE_BUILD_COMBINE_LIBS

-ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
-LDLIBS += -lpcap
-endif
+LDLIBS-$(CONFIG_RTE_LIBRTE_PMD_PCAP)   += -lpcap

 ifeq ($(CONFIG_RTE_LIBRTE_VHOST)$(CONFIG_RTE_LIBRTE_VHOST_USER),yn)
-LDLIBS += -lfuse
+LDLIBS-$(CONFIG_RTE_LIBRTE_VHOST)  += -lfuse
 endif

-ifeq ($(CONFIG_RTE_LIBRTE_MLX4_PMD),y)
-LDLIBS += -libverbs
-endif
+LDLIBS-$(CONFIG_RTE_LIBRTE_MLX4_PMD)   += -libverbs

-LDLIBS += --start-group
+LDLIBS-y += --start-group

 ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)

-ifeq ($(CONFIG_RTE_LIBRTE_KVARGS),y)
-LDLIBS += -lrte_kvargs
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_MBUF),y)
-LDLIBS += -lrte_mbuf
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_IP_FRAG),y)
-LDLIBS += -lrte_ip_frag
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_ETHER),y)
-LDLIBS += -lethdev
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_MALLOC),y)
-LDLIBS += -lrte_malloc
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_MEMPOOL),y)
-LDLIBS += -lrte_mempool
-endif
-
-ifeq ($(CONFIG_RTE_LIBRTE_RING),y)
-LDLIBS += -lrte_ring
-endif