From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 116724 invoked by alias); 27 Oct 2017 21:32:47 -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 116707 invoked by uid 89); 27 Oct 2017 21:32:46 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY autolearn=ham version=3.3.2 spammy=H*Ad:U*joel, H*RU:sk:gateway, Hx-spam-relays-external:sk:gateway, Hx-languages-length:1088 X-HELO: mx.coeval.ca Received: from mx.coeval.ca (HELO mx.coeval.ca) (184.75.211.21) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 27 Oct 2017 21:32:44 +0000 Received: from rtbf64c.rtems.com (gateway.oarcorp.com [67.63.146.110]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx.coeval.ca (Postfix) with ESMTPSA id 931BC436057; Fri, 27 Oct 2017 21:32:42 +0000 (UTC) From: Joel Sherrill To: newlib@sourceware.org Cc: Joel Sherrill Subject: [PATCH v3 1/2] newlib/configure.host: Remove obsolete definition of _I386MACH_ALLOW_HW_INTERRUPTS Date: Fri, 27 Oct 2017 21:32:00 -0000 Message-Id: <1509139960-28052-1-git-send-email-joel@rtems.org> X-SW-Source: 2017/txt/msg01053.txt.bz2 The *-*-rtems* targets defined this even though the conditional was no longer present in i386/setjmp.S. --- newlib/configure.host | 2 -- 1 file changed, 2 deletions(-) diff --git a/newlib/configure.host b/newlib/configure.host index ba2d8c6..fb3362b 100644 --- a/newlib/configure.host +++ b/newlib/configure.host @@ -608,8 +608,6 @@ case "${host}" in newlib_cflags="${newlib_cflags} -DCLOCK_PROVIDED -DMALLOC_PROVIDED -DEXIT_PROVIDED -DSIGNAL_PROVIDED -DREENTRANT_SYSCALLS_PROVIDED -DHAVE_NANOSLEEP -DHAVE_BLKSIZE -DHAVE_FCNTL -DHAVE_ASSERT_FUNC" # turn off unsupported items in posix directory newlib_cflags="${newlib_cflags} -D_NO_GETLOGIN -D_NO_GETPWENT -D_NO_GETUT -D_NO_GETPASS -D_NO_SIGSET -D_NO_WORDEXP -D_NO_POPEN -D_NO_POSIX_SPAWN" - # turn off using cli/sti in i386 setjmp/longjmp - newlib_cflags="${newlib_cflags} -D_I386MACH_ALLOW_HW_INTERRUPTS" ;; # VxWorks supplies its own version of malloc, and the newlib one # doesn't work because VxWorks does not have sbrk. -- 1.8.3.1