From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by sourceware.org (Postfix) with ESMTPS id 963C33858427 for ; Mon, 9 May 2022 08:49:09 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 963C33858427 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id CDF811FA07 for ; Mon, 9 May 2022 08:49:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1652086148; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=L9W3awxXKXogcNBLrz3cL4TDDgX3XPQWsu1Bjq9fzn0=; b=dIh6n8WcnEZAruoYF7sJjexLjzTQd0cWVqaqyz4Aki9PySQeeOf8F5aDENdQdTNIUgn5dg 4qdf5cdO/JKOB47l+twCytVPwlIIXbxO3ywFzrcjLrG4ez/fiy4zpcsvSxicnzceBBdwJ2 mTWBQCI3nme9S/6sY0f42fcMyGtH/oo= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1652086148; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=L9W3awxXKXogcNBLrz3cL4TDDgX3XPQWsu1Bjq9fzn0=; b=+evdZa19FDouJow7l6L+z+7NMp/bL7C+KjD60dN/T2DNqv6unpLLEqRaBEeNxXIo7OOlz6 sOnsla+Sfa0hy0Cg== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id BFC4A13AA5 for ; Mon, 9 May 2022 08:49:08 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id DIjGLYTVeGJATQAAMHmgww (envelope-from ) for ; Mon, 09 May 2022 08:49:08 +0000 Message-ID: <99b5380e-8072-dd67-497d-94f72eee43c3@suse.cz> Date: Mon, 9 May 2022 10:49:08 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.9.0 Content-Language: en-US To: Binutils From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: Do we support Not ANSI C compiler? Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: binutils@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 May 2022 08:49:10 -0000 Hi. I noticed ./include/ansidecl.h contains not ANSI C path: #else /* Not ANSI C. */ #define PTR char * /* some systems define these in header files for non-ansi mode */ #undef const #undef volatile #undef signed #undef inline #define const #define volatile #define signed #define inline #endif /* ANSI C. */ And my question is if we really support such compilers or can we remove the hunk? Cheers, Martin