From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 70411 invoked by alias); 19 Mar 2017 07:25:26 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 70396 invoked by uid 89); 19 Mar 2017 07:25:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE autolearn=no version=3.3.2 spammy=H*Ad:U*phil X-HELO: p3plsmtpa08-02.prod.phx3.secureserver.net Received: from p3plsmtpa08-02.prod.phx3.secureserver.net (HELO p3plsmtpa08-02.prod.phx3.secureserver.net) (173.201.193.103) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 19 Mar 2017 07:25:24 +0000 Received: from [10.0.0.23] ([213.80.122.24]) by :SMTPAUTH: with SMTP id pVCtchRRzMy6IpVCucnSmq; Sun, 19 Mar 2017 00:24:53 -0700 To: newlib@sourceware.org From: Philip Munts Subject: How to disable per-local string functions? Message-ID: <6ccd4b02-8a5e-feb6-cfb2-266bbd280e1d@munts.net> Date: Sun, 19 Mar 2017 07:25:00 -0000 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfFc4QzK/CL/aBNTsmNYlo2/DHBUbxOgVWaQOffLYsN8Qy2fyFPGyIiSuChzki+WxBB2EyZp4EJsYNSbkUhc/zcZtNiib3J0Z343ce4tGhDE4k7Qe5BqQ E0fDwP2Q2g+y07pgSY/4hy36JnDiZjYsRRIjLkuFLo3tnPc1VQUPxQQK X-IsSubscribed: yes X-SW-Source: 2017/txt/msg00192.txt.bz2 I have a resource constrained Cortex-M0 application that fails with newlib 2.5.0. The strncasecmp() function is now pulling in a lot of locale handling code, which I presume results from commit c1b7d9d93dc8e88693162c0d984a114371919fdd, "Implement per-locale string functions". How can I either build newlib, or build my application to use the original string functions instead of the new *_l locale handling string functions? Phil