From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 37932 invoked by alias); 13 Aug 2015 22:26:51 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 37922 invoked by uid 89); 13 Aug 2015 22:26:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ig0-f171.google.com Received: from mail-ig0-f171.google.com (HELO mail-ig0-f171.google.com) (209.85.213.171) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 13 Aug 2015 22:26:49 +0000 Received: by igui7 with SMTP id i7so943729igu.1 for ; Thu, 13 Aug 2015 15:26:47 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.50.78.133 with SMTP id b5mr30111039igx.70.1439504807681; Thu, 13 Aug 2015 15:26:47 -0700 (PDT) Received: by 10.36.248.6 with HTTP; Thu, 13 Aug 2015 15:26:47 -0700 (PDT) In-Reply-To: <55CD1308.3020602@redhat.com> References: <55CD1308.3020602@redhat.com> Date: Thu, 13 Aug 2015 22:26:00 -0000 Message-ID: Subject: Re: gdbserver - manually modify Makefile From: Ran Shalit To: Pedro Alves Cc: gdb Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-08/txt/msg00028.txt.bz2 On Fri, Aug 14, 2015 at 12:58 AM, Pedro Alves wrote: > On 08/13/2015 09:50 PM, Ran Shalit wrote: >> Hello, >> >> I've cross compile gdbserver according to wiki in: >> https://sourceware.org/gdb/wiki/BuildingCrossGDBandGDBserver >> ubuntu@ubuntu-laptop:~/gdb-7.9.1/gdb/gdbserver$ sudo ./configure >> --host=powerpc-buildroot-linux-gnu --disable-werror > > You should not need sudo, nor --disable-werror. > >> >> But on doing : >> make >> I've noticed that it uses the host gcc instead of the cross-compiler gcc. >> Only after manually modifying the Makefie with >> CC = powerpc-buildroot-linux-gnu-gcc >> instead of >> CC = gcc >> It was cross compiling as expected. >> > > Open the config.log file in the build directory, and look for something > that looks like this: > > configure:2558: checking for powerpc-buildroot-linux-gnu-gcc > > The following lines should look something like this: > > configure:2574: found /path/to/whatever/bin/powerpc-buildroot-linux-gnu-gcc > configure:2585: result: powerpc-buildroot-linux-gnu-gcc > configure:2854: checking for C compiler version > configure:2863: powerpc-buildroot-linux-gnu-gcc --version >&5 > > But in your case, "result" is probably "gcc". If configure doesn't > find $host-gcc, then it'll default to "gcc". Most likely, you don't > have powerpc-buildroot-linux-gnu-gcc in the PATH. Make sure > it is in the PATH, and that you can execute it (e.g., try > $ powerpc-buildroot-linux-gnu-gcc -v), and start over. > > Let me know how it went. > > Thanks, > Pedro Alves > Hi Pedro, Thanks for the feedback. You were correct about the PATH, that solved the issue ! But I still need the --disable-werror, otherwise it stops build on warning (treated as error). Regards, Ran