From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/3770 Path: news.gmane.org!not-for-mail From: Gregor Pintar Newsgroups: gmane.linux.lib.musl.general Subject: Re: musl 0.9.12 released Date: Mon, 29 Jul 2013 19:37:19 +0200 Message-ID: References: <20130729073513.GA27186@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1375119449 31602 80.91.229.3 (29 Jul 2013 17:37:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 29 Jul 2013 17:37:29 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-3774-gllmg-musl=m.gmane.org@lists.openwall.com Mon Jul 29 19:37:32 2013 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1V3rNz-0005Ug-SE for gllmg-musl@plane.gmane.org; Mon, 29 Jul 2013 19:37:31 +0200 Original-Received: (qmail 17888 invoked by uid 550); 29 Jul 2013 17:37:31 -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 17880 invoked from network); 29 Jul 2013 17:37:31 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=DkjcAj/jrWwmv0RIn3pqoF2oPFMQRgf64BCz9IpDXBk=; b=Iy9J4jqgkR0rZzzeik4VL9BztnhWZURxvAbS0Zg48f7oY5KSILdn38UGAsKIly/+YV KBiLIpD4iO/dIMY3pIX5+IdET9k9+gDlUU1JGIBl3CFBBXXltMOzjW5YePsTjAp6rdzJ g6IbYuGgwpzNIw5tABvuJsg7VwG/2NRq7qLkX8b38kM46ndZFmFodQ7WRKYaDu9CaJ0K gcAfpGXhpeLO8s8s9wsLbF5I+Pg10/Vx9D6blnNNf8cctKP/eduTfvXJ8gHkGAIvzAXd hubIt7AehGuJEmmVTvN8462lQLXVO7XuEzlQqhEcawjStE1z6slyVij2LCYHqL0hFg1c 4Yfg== X-Received: by 10.194.24.227 with SMTP id x3mr22944269wjf.7.1375119439462; Mon, 29 Jul 2013 10:37:19 -0700 (PDT) In-Reply-To: <20130729073513.GA27186@brightrain.aerifal.cx> Xref: news.gmane.org gmane.linux.lib.musl.general:3770 Archived-At: 2013/7/29, Rich Felker : > I'm pleased to announce musl 0.9.12, just barely on-schedule: > > Notable new features include zoneinfo timezone support, PIE > support on all supported targets, simple heap-based buffer > overflow detection in free/realloc, and mildly improved IPv6 > support. Various dynamic linker improvements have been made for > arch variants and non-root installations. The C++ ABI is now > stabilized and compatible with glibc's C++ ABI. Several major bugs > have been fixed including a potentially-dangerous regression in > scanf introduced in 0.9.11 that could pass invalid pointers to > free, a flaw in dl_iterate_phdr's reporting of library headers > that could crash C++ exception-handling, and longstanding integer > overflows in time conversion code that produced incorrect results > for certain pre-1935 dates. Other minor bugs have also been fixed. > > http://www.etalabs.net/musl/releases/musl-0.9.12.tar.gz > http://www.musl-libc.org/releases/musl-0.9.12.tar.gz > > Rather than the usual future-directions here, I'll follow up on the > roadmap thread/wiki. > > Rich > I have a problem. When I try to compile it, I get this: gcc -std=c99 -nostdinc -ffreestanding -fexcess-precision=standard -frounding-math -D_XOPEN_SOURCE=700 -I./arch/x86_64 -I./src/internal -I./include -pipe -fomit-frame-pointer -fno-unwind-tables -fno-asynchronous-unwind-tables -Wa,--noexecstack -Werror=implicit-function-declaration -Werror=implicit-int -Werror=pointer-sign -Werror=pointer-arith -fno-stack-protector -O2 -fPIC -c -o crt/crt1.o crt/x86_64/crt1.s crt/x86_64/crt1.s: Assembler messages: crt/x86_64/crt1.s:7: Error: bad register name `%rbp' crt/x86_64/crt1.s:8: Error: bad register name `%rdx' crt/x86_64/crt1.s:9: Error: bad register name `%rsi' crt/x86_64/crt1.s:10: Error: bad register name `%rsp' crt/x86_64/crt1.s:11: Error: bad register name `%rsp' crt/x86_64/crt1.s:12: Error: bad register name `%r8' crt/x86_64/crt1.s:13: Error: bad register name `%rcx' crt/x86_64/crt1.s:14: Error: bad register name `%rdi' make: *** [crt/crt1.o] Error 1 I have Binutils 2.23.1 and GCC 4.8.1. But it compiles with Clang 3.2.