From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/7703 Path: news.gmane.org!not-for-mail From: Alex Dowad Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH] Build process uses script to add CFI directives to x86 asm Date: Tue, 19 May 2015 18:22:24 +0200 Message-ID: <20150519162224.GA6317@alex-ThinkPad-L530> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1432052573 25098 80.91.229.3 (19 May 2015 16:22:53 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 19 May 2015 16:22:53 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-7715-gllmg-musl=m.gmane.org@lists.openwall.com Tue May 19 18:22:51 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1YukI4-0005f3-UN for gllmg-musl@m.gmane.org; Tue, 19 May 2015 18:22:49 +0200 Original-Received: (qmail 20086 invoked by uid 550); 19 May 2015 16:22:46 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 20057 invoked from network); 19 May 2015 16:22:43 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=a/Ysa5+N0cME/56j+ugEh7WW71eIWIk+nanLVVMtb3s=; b=Z6HavWEpPY8aejUrtBKGBZvzc8MRLkQOupXi0AwHKnIBaaYjt8jtL4XDBc/a0hu91v mG6XzhqPKWVggKR2cmGyf+52f4Rd8hk76VekVGyorFEb6IrdBzao53QhRCeVkxH8/rjS SNVUhpqPV6qgCXk8GQbixx38EYhOHXwmP1vAovWO8kA3MXdEPKq6vTRFU3hcgWuIneSM srUFvPtKnJhDnZjV8+KrDl0blURYqesZxYjGYEeWI+Fg62swc+7uqKY3Q9ActePYZpkp dNnRUnyYwgd0iAte2OXcq2Jx5Sad7SGSYux7dD+TOPzFUADRHwTH1m8urf0BuxHs2YsE 8ZOA== X-Received: by 10.194.3.77 with SMTP id a13mr56699924wja.104.1432052551444; Tue, 19 May 2015 09:22:31 -0700 (PDT) Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:7703 Archived-At: > configure already uses its own echo definition > so ash's echo should not be used > how did the config script end up calling ash's echo? OK, thanks for pointing this out. I shouldn't have said that the problem was with ash's echo. The original configure script worked when I ran it on Linux Mint + bash, and didn't work on Alpine Linux + BusyBox ash. I didn't notice echo() in the configure script, did some experimentation with bash's echo and ash's, found a difference which seemed to explain the observed problem, and worked around it. Now it looks like the issue was something else. I can't seem to duplicate the problem right this moment; however, the configure script as it is right now works on both platforms. Mysteries, mysteries... AD