This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [PATCH] Relocated compiler should not look in $prefix.
- From: "Andrew Pinski" <pinskia at gmail dot com>
- To: "Mark Mitchell" <mark at codesourcery dot com>
- Cc: "Carlos O'Donell" <carlos at codesourcery dot com>, gcc at gcc dot gnu dot org, "Ian Lance Taylor" <iant at google dot com>, "Gabriel Dos Reis" <gdr at integrable-solutions dot net>, "Eric Weddington" <eweddington at cso dot atmel dot com>, "Danny Smith" <dannysmith at clear dot net dot nz>
- Date: Tue, 12 Dec 2006 13:44:05 -0800
- Subject: Re: [PATCH] Relocated compiler should not look in $prefix.
- References: <20061013165108.GG6357@lios> <1165909998.24607.7.camel@celery.andrew.com> <457EEF6F.6060306@codesourcery.com>
What are the contents of t.c? What if you set GCC_EXEC_PREFIX?
t.c:
#include <stdio.h>
int main(void)
{
printf("Hello World\n");
return 0;
}
------
No I did not set GCC_EXEC_PREFIX as I did not know I have to set that now.
Seems like a change like this should be mentioned on
http://gcc.gnu.org/gcc-4.3/changes.html
Because some people liked the old behavior when debugging the driver.
Thanks,
Andrew Pinski