Displaying 3 results from an estimated 3 matches for "__me".
Did you mean:
__m
2006 Apr 22
0
[LLVMdev] Re: Building CFE on MinGW
Greg Pettyjohn <gregp at ccs.neu.edu> writes:
> Is the MinGW user's list on the web?
Look on www.mingw.org -> mailing list
> Can you give me a link to the thread?
Sorry, no time for that. Once on the mailing list archives, do a
search for 'configure'.
> (What's IIRC?)
If I Remember Correctly.
By the way, what's your configure command?
--
Oscar
2006 Apr 22
2
[LLVMdev] Re: Building CFE on MinGW
Is the MinGW user's list on the web? Can you give me a link to the thread?
(What's IIRC?)
Thanks.
On Sat, 22 Apr 2006, Oscar Fuentes wrote:
> Greg Pettyjohn <gregp at ccs.neu.edu> writes:
>
> > I've blown a couple of weekends trying to build under MinGW.
> >
> > I can build the llvm tools with only a couple of minor hassles, but can't
> > seem
2006 Apr 23
3
[LLVMdev] Re: Building CFE on MinGW
I'm using a little shell script:
BUILD_ROOT=/home/llvm-1.7/cfrontend
PREFIX="$BUILD_ROOT/install"
LOCAL_BUILD_DIR="$BUILD_ROOT/build"
SOURCE_DIR="$BUILD_ROOT/src"
echo $__me: Building $TARGET
echo $__me: BUILD_ROOT == $BUILD_ROOT
echo $__me: SOURCE_DIR == $SOURCE_DIR
echo $__me: LOCAL_BUILD_DIR == $LOCAL_BUILD_DIR
echo $__me: PREFIX == $PREFIX
confopts="--prefix=$PREFIX"
confopts="$confopts --disable-threads"
confopts="$confopts --disabl...