From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 107795 invoked by alias); 14 Jul 2015 13:21:30 -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 107776 invoked by uid 89); 14 Jul 2015 13:21:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.3.2 X-HELO: scc-mailout-kit-02-aegee.scc.kit.edu Received: from scc-mailout-kit-02-aegee.scc.kit.edu (HELO scc-mailout-kit-02-aegee.scc.kit.edu) (129.13.231.100) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 14 Jul 2015 13:21:28 +0000 Received: from aegeepc1.aegee.uni-karlsruhe.de ([129.13.131.81] helo=smtp.aegee.org) by scc-mailout-kit-02.scc.kit.edu with esmtps (TLS1.2:RSA_CAMELLIA_256_CBC_SHA1:256) (envelope-from ) id 1ZF09A-0004sp-TB; Tue, 14 Jul 2015 15:21:22 +0200 Authentication-Results: aegeeserv.aegee.org; auth=pass (PLAIN) smtp.auth=didopalauzov DKIM-Filter: OpenDKIM Filter v2.10.3 smtp.aegee.org t6EDLQlw002296 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 t6EDLQlw002296 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Tue, 14 Jul 2015 13:21:26 GMT Message-ID: <55A50CE5.1040803@aegee.org> Date: Tue, 14 Jul 2015 13:21: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 References: <55A38035.20602@aegee.org> In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2015-07/txt/msg00401.txt.bz2 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. >