From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/3244 Path: news.gmane.org!not-for-mail From: Rob Landley Newsgroups: gmane.linux.lib.musl.general Subject: Re: High-priority library replacements? Date: Mon, 29 Apr 2013 15:14:42 -0500 Message-ID: <1367266482.18069.188@driftwood> References: <1367214709.30217.YahooMailClassic@web160406.mail.bf1.yahoo.com> <517EA211.1060703@barfooze.de> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; DelSp=Yes; Format=Flowed Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1367267474 12013 80.91.229.3 (29 Apr 2013 20:31:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 29 Apr 2013 20:31:14 +0000 (UTC) Cc: musl@lists.openwall.com To: musl@lists.openwall.com Original-X-From: musl-return-3248-gllmg-musl=m.gmane.org@lists.openwall.com Mon Apr 29 22:31:15 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 1UWujB-0007pt-H9 for gllmg-musl@plane.gmane.org; Mon, 29 Apr 2013 22:31:13 +0200 Original-Received: (qmail 25632 invoked by uid 550); 29 Apr 2013 20:31:12 -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 25621 invoked from network); 29 Apr 2013 20:31:11 -0000 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:date:from:subject:to:cc:references:in-reply-to:x-mailer :message-id:mime-version:content-type:content-disposition :content-transfer-encoding:x-gm-message-state; bh=LXk3j1yYPpuwTwqDnpN5H8KZ6utlYs9tCZzw3cIC8jI=; b=JyZLlVf9WBvaY0O3MHtepQ96OiIpad9TRufZyX8kSMC0eZgBEsHhiRkFfZnqNCpqKx 0ioFsomUL06cnXUi2pb00NLS9EGMyrxGl3RA7o0fRbvxxJojrK9pRLnMTlsPgpyZw09S 7o7jdUsQyGEaGEbHaB9mHJ3Qv3o3yn5Qpl64NIT9eiE350wfbXJ50x9pQ0rZkOly5FwL WbK/FuBkaIzC5Fh9NQV0KEGaWHkl6dqYwJDEXReuX81S8O9anRVUFTkt2Cq2pXL9LokK lm9UbgsFM/a8E0ASZeuwuVR3h+0yOTReI/9mg1GFZVARNcDgRH/0RBQN+BRJ3u6mQJAb PlSA== X-Received: by 10.42.151.3 with SMTP id c3mr30013231icw.27.1367267460050; Mon, 29 Apr 2013 13:31:00 -0700 (PDT) In-Reply-To: <517EA211.1060703@barfooze.de> (from maillist-musl@barfooze.de on Mon Apr 29 11:38:41 2013) X-Mailer: Balsa 2.4.11 Content-Disposition: inline X-Gm-Message-State: ALoCoQmjlwROvltlAUaoc4LWo6uQGq8mVY/dX3URkFXivwOx+f6Xi8HCAJx/C3Q1bGptb93CdCP7 Xref: news.gmane.org gmane.linux.lib.musl.general:3244 Archived-At: On 04/29/2013 11:38:41 AM, John Spencer wrote: > On 04/29/2013 07:51 AM, Brad Conroy wrote: >> I have been keeping track of unbloated alternative resources with =20 >> permissive licenses here: >> http://www.murga-linux.com/puppy/viewtopic.php?t=3D72359 >>=20 >> Here is a summary in no particular order: >> Imaging ... stb_image (nothings.org) or nanojpeg+lodepng+webp >> stb_image supports png and gif (+many others) and thus has lzo and =20 >> zlib >> Lua ... stua (nothings.org) >> Ogg ... stb_vorbis >=20 > i would be careful with stb_ things since the author makes statements =20 > such as: > "Warning: gcc strict-aliasing optimization breaks this, which is too =20 > bad, because > my old version probably didn't have that problem but it relied on =20 > silently casting > from void*, which doesn't work in C++, so when I made it C++ =20 > compilable I had to > start casting to void** and doing other shenanigans and bam. Just Say =20 > No to strict > aliasing optimizations in C, which should be the sane systems =20 > programming language. Sounds good to me. At the very least the compiler should have a =20 --stop-being-stupid command line flag. Rob=