From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 9E830CCCA for ; Fri, 17 Jun 2016 15:19:58 +0200 (CEST) Received: by mail-wm0-f50.google.com with SMTP id m124so112496062wme.1 for ; Fri, 17 Jun 2016 06:19:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=sxYm1lh3mvXMo81s8oc4iqsl2g+6z+oe1oqMZp5Anb0=; b=b3eVqihgLNxwISMWMrM7lu9sv2IJ6ttOFF/GkfkOHeE2guxQprEAwA5PXSemtVGNhK G2YfDYm6FUcpvw3ROjBD3jnUTzC9N6Hur9T2na8MjxXWTGZK2Hz5GqHpdZKfBsmB8WmK cMuUMGk2WyiDSRrqtqQV6UycOj28M0Zl2yKmnyHSqsGawZOBvmvs1TTPPLxngvtXEW2M Dgg0gFSq7o6MzfdwVvu2q0Mr7l77q1h9nANErPK69/hTX05rplo5aad3mO7Top5TH1TS tW6QP4CXfPdRD5rzn4eSGEySGb0nySVugV1nkyhjQFtJ2l6lbL2yPdClughpIBVSDGwN AbAA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=sxYm1lh3mvXMo81s8oc4iqsl2g+6z+oe1oqMZp5Anb0=; b=XSjlnEsdU0XrfvrpNz0wGnPlb1Kgr/ZwL0mlTEidcnpKanymqVO2cVT03FeimeHCG2 h0x515v4ohseeStHXKRj8Bb5p/o7VKQLS2xgt4byhnCrXnriQqkC+2lpHc28tNSKcsLF KZFuoS1L8rFwlkViECv03pHIzIVl8R8uXOP/xnSFVrXZpBSqrmJL3HLPIhACXpKUOP4q 8U3PSdOwWeodGPj16EPPyve2oJxW4gHlG/RtyaK2j0pohjj67A3X1rkKrmovQk91Ql9x thS6V+jIHX/4RFWnGyPNYMf1v0Rf7QZ96O5Y8ThsqQlOB6s+zqkEjSZtc/ZIvgFJcwcm YOoQ== X-Gm-Message-State: ALyK8tILzaXAVNfCX6h3Zar0rxhObd7G6u5NBeHdK3K4DJzvIUuphmSLdO0JYbhPXOPVvJt+ X-Received: by 10.28.29.211 with SMTP id d202mr21567412wmd.22.1466169598257; Fri, 17 Jun 2016 06:19:58 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id c74sm2637315wme.1.2016.06.17.06.19.56 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 17 Jun 2016 06:19:57 -0700 (PDT) From: Thomas Monjalon To: Jan Viktorin Cc: dev@dpdk.org Date: Fri, 17 Jun 2016 15:19:56 +0200 Message-ID: <4736009.KaJXg4pMzg@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1466167967-12873-1-git-send-email-viktorin@rehivetech.com> References: <1466167967-12873-1-git-send-email-viktorin@rehivetech.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] app/test: call objdump in platform-independent way X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jun 2016 13:19:58 -0000 2016-06-17 14:52, Jan Viktorin: > Using of the /dev/stdin generates a warning when compiling on FreeBSD: > > objcopy: Warning: '/dev/stdin' is not an ordinary file > app/test/Makefile:78: recipe for target 'test_resource_c.res.o' failed > # ls -l /dev/stdin > lrwxr-xr-x 1 root wheel 4 Jun 17 12:24 /dev/stdin -> fd/0 > > Replace /dev/stdin by a temporary file. > > Signed-off-by: Jan Viktorin > Reported-by: Thomas Monjalon Tested-by: Thomas Monjalon Looks good, thanks