DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [DPDK] changed default-target from linux to linuxapp for back-compatibility of validate-abi.sh
@ 2019-04-24  8:18 Peng Huang
  2019-04-24  8:18 ` Peng Huang
  2019-04-24  8:56 ` Bruce Richardson
  0 siblings, 2 replies; 4+ messages in thread
From: Peng Huang @ 2019-04-24  8:18 UTC (permalink / raw)
  To: maintainer; +Cc: dev, peng.huang

Signed-off-by: Peng Huang <peng.huang@intel.com>
---
 devtools/validate-abi.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devtools/validate-abi.sh b/devtools/validate-abi.sh
index 54df2e4..138436d 100755
--- a/devtools/validate-abi.sh
+++ b/devtools/validate-abi.sh
@@ -9,7 +9,7 @@ set -e
 abicheck=abi-compliance-checker
 abidump=abi-dumper
 default_dst=abi-check
-default_target=x86_64-native-linux-gcc
+default_target=x86_64-native-linuxapp-gcc
 
 # trap on error
 err_report() {
-- 
1.8.3.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [dpdk-dev] [DPDK] changed default-target from linux to linuxapp for back-compatibility of validate-abi.sh
  2019-04-24  8:18 [dpdk-dev] [DPDK] changed default-target from linux to linuxapp for back-compatibility of validate-abi.sh Peng Huang
@ 2019-04-24  8:18 ` Peng Huang
  2019-04-24  8:56 ` Bruce Richardson
  1 sibling, 0 replies; 4+ messages in thread
From: Peng Huang @ 2019-04-24  8:18 UTC (permalink / raw)
  To: maintainer; +Cc: dev, peng.huang

Signed-off-by: Peng Huang <peng.huang@intel.com>
---
 devtools/validate-abi.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/devtools/validate-abi.sh b/devtools/validate-abi.sh
index 54df2e4..138436d 100755
--- a/devtools/validate-abi.sh
+++ b/devtools/validate-abi.sh
@@ -9,7 +9,7 @@ set -e
 abicheck=abi-compliance-checker
 abidump=abi-dumper
 default_dst=abi-check
-default_target=x86_64-native-linux-gcc
+default_target=x86_64-native-linuxapp-gcc
 
 # trap on error
 err_report() {
-- 
1.8.3.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [DPDK] changed default-target from linux to linuxapp for back-compatibility of validate-abi.sh
  2019-04-24  8:18 [dpdk-dev] [DPDK] changed default-target from linux to linuxapp for back-compatibility of validate-abi.sh Peng Huang
  2019-04-24  8:18 ` Peng Huang
@ 2019-04-24  8:56 ` Bruce Richardson
  2019-04-24  8:56   ` Bruce Richardson
  1 sibling, 1 reply; 4+ messages in thread
From: Bruce Richardson @ 2019-04-24  8:56 UTC (permalink / raw)
  To: Peng Huang; +Cc: maintainer, dev

On Wed, Apr 24, 2019 at 08:18:09AM +0000, Peng Huang wrote:
> Signed-off-by: Peng Huang <peng.huang@intel.com>
> ---

I think you need a fuller description of the problem here - that although
"linux" is the new target name, we still need to use "linuxapp" for testing
historical versions. 

Fixes tag also needed.

/Bruce

>  devtools/validate-abi.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/devtools/validate-abi.sh b/devtools/validate-abi.sh
> index 54df2e4..138436d 100755
> --- a/devtools/validate-abi.sh
> +++ b/devtools/validate-abi.sh
> @@ -9,7 +9,7 @@ set -e
>  abicheck=abi-compliance-checker
>  abidump=abi-dumper
>  default_dst=abi-check
> -default_target=x86_64-native-linux-gcc
> +default_target=x86_64-native-linuxapp-gcc
>  
>  # trap on error
>  err_report() {
> -- 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [DPDK] changed default-target from linux to linuxapp for back-compatibility of validate-abi.sh
  2019-04-24  8:56 ` Bruce Richardson
@ 2019-04-24  8:56   ` Bruce Richardson
  0 siblings, 0 replies; 4+ messages in thread
From: Bruce Richardson @ 2019-04-24  8:56 UTC (permalink / raw)
  To: Peng Huang; +Cc: maintainer, dev

On Wed, Apr 24, 2019 at 08:18:09AM +0000, Peng Huang wrote:
> Signed-off-by: Peng Huang <peng.huang@intel.com>
> ---

I think you need a fuller description of the problem here - that although
"linux" is the new target name, we still need to use "linuxapp" for testing
historical versions. 

Fixes tag also needed.

/Bruce

>  devtools/validate-abi.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/devtools/validate-abi.sh b/devtools/validate-abi.sh
> index 54df2e4..138436d 100755
> --- a/devtools/validate-abi.sh
> +++ b/devtools/validate-abi.sh
> @@ -9,7 +9,7 @@ set -e
>  abicheck=abi-compliance-checker
>  abidump=abi-dumper
>  default_dst=abi-check
> -default_target=x86_64-native-linux-gcc
> +default_target=x86_64-native-linuxapp-gcc
>  
>  # trap on error
>  err_report() {
> -- 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-04-24  8:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-24  8:18 [dpdk-dev] [DPDK] changed default-target from linux to linuxapp for back-compatibility of validate-abi.sh Peng Huang
2019-04-24  8:18 ` Peng Huang
2019-04-24  8:56 ` Bruce Richardson
2019-04-24  8:56   ` Bruce Richardson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).