From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 126469 invoked by alias); 14 Jul 2015 13:33:06 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 126458 invoked by uid 89); 14 Jul 2015 13:33:05 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.6 required=5.0 tests=AWL,BAYES_00,URIBL_BLACK autolearn=no version=3.3.2 X-HELO: scc-mailout-kit-01-aegee.scc.kit.edu Received: from scc-mailout-kit-01-aegee.scc.kit.edu (HELO scc-mailout-kit-01-aegee.scc.kit.edu) (129.13.231.90) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 14 Jul 2015 13:33:03 +0000 Received: from aegeepc1.aegee.uni-karlsruhe.de ([129.13.131.81] helo=smtp.aegee.org) by scc-mailout-kit-01.scc.kit.edu with esmtps (TLS1.2:RSA_CAMELLIA_256_CBC_SHA1:256) (envelope-from ) id 1ZF0KR-0004t7-O3; Tue, 14 Jul 2015 15:33:00 +0200 Authentication-Results: aegeeserv.aegee.org; auth=pass (PLAIN) smtp.auth=didopalauzov DKIM-Filter: OpenDKIM Filter v2.10.3 smtp.aegee.org t6EDX2fm003512 Authentication-Results: mail.aegee.org; dkim=none Received: from [192.168.178.22] (aftr-185-17-204-65.dynamic.mnet-online.de [185.17.204.65]) (authenticated bits=0) by smtp.aegee.org (8.15.1/8.15.1) with ESMTPSA id t6EDX2fm003512 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Tue, 14 Jul 2015 13:33:04 GMT Message-ID: <55A50F9E.20905@aegee.org> Date: Tue, 14 Jul 2015 13:33:00 -0000 From: Dilyan Palauzov User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.7.0 MIME-Version: 1.0 To: Andreas Schwab CC: gdb-patches@sourceware.org Subject: Re: [PATCH] use system rl headers, when --with-system-readline is provided/2 References: <55A38035.20602@aegee.org> <55A50CE5.1040803@aegee.org> In-Reply-To: <55A50CE5.1040803@aegee.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-07/txt/msg00402.txt.bz2 For the record, the -Wmissing-parameter-type and -Wold-style-declaration from gdb/configure.ac are not supported by clang. On 07/14/2015 03:21 PM, Dilyan Palauzov wrote: > Hello Andreas, > > clang-3.6 t.c -Wp,--help > > prints: > > USAGE: clang -cc1 [options] > > OPTIONS: > > -iquote Add directory to QUOTE include search path > > [with t.c: #include > int main (int argc, char** argv) {printf("abc\n"); return 0;}] > > Greetings > Dilian > > On 07/13/2015 11:29 AM, Andreas Schwab wrote: >> Dilyan Palauzov writes: >> >>> diff --git a/gdb/Makefile.in b/gdb/Makefile.in >>> index dfaa8a3..579d0dd 100644 >>> --- a/gdb/Makefile.in >>> +++ b/gdb/Makefile.in >>> @@ -468,7 +468,7 @@ OPCODES = $(OPCODES_DIR)/libopcodes.a >>> # versions? >>> OP_INCLUDE = $(INCLUDE_DIR)/opcode >>> # Some source files like to use #include "opcodes/file.h" >>> -OPCODES_CFLAGS = -I$(OP_INCLUDE) -I$(OPCODES_SRC)/.. >>> +OPCODES_CFLAGS = -I$(OP_INCLUDE) -iquote$(OPCODES_SRC)/.. >> >> -iquote is gcc-only. >> >> Andreas. >>