CreateProcess FAILS WHEN INCLUDING MAKE FILES ON WIN32 Platform

2000-11-22 Thread Svend Kristian Lindholm
Platform versions: Windows NT Diagnostics : Version 4.0 (Build 1381: Service Pack 5) make --version : Y:\>Y:\unxutils\usr\local\wbin\make.exe --version GNU Make version 3.78.1, by Richard Stallman and Roland McGrath. Built for Windows32 Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97

Re: failure to rebuild file (make 3.79)

2000-11-22 Thread Paul D. Smith
%% Jesse Thilo <[EMAIL PROTECTED]> writes: jt> I believe I've found a bug in the current version of make. To jt> reproduce, extract the three files from the attached tarball and jt> perform the following commands: jt>make jt>touch touch-me jt>make jt> Not that "one.o"

failure to rebuild file (make 3.79)

2000-11-22 Thread Jesse Thilo
I believe I've found a bug in the current version of make. To reproduce, extract the three files from the attached tarball and perform the following commands: make touch touch-me make Not that "one.o" is not rebuilt, even though "one.c" is newer. make-bug.tar.gz

Re: [Fwd: Target specific variable problems]

2000-11-22 Thread Paul D. Smith
I looked at it and my first reaction was that it's a bug. However, I haven't had enough time yet to dig into it; maybe I will over the Thanksgiving holiday. -- --- Paul D. Smith <[EMAIL PROTECTED]> Find some G

[Fwd: Target specific variable problems]

2000-11-22 Thread Scott Murray
Anyone have any insight into these issues I posted last week? Scott Murray wrote: > > Consider the following Makefile: > > # start > .PHONY: a b c d all > > BLAH := foo > COMMAND = echo $(BLAH) > > all: a b c > > a b c: > @$(COMMAND) > > b: BLAH := bar > > c: BLAH := bar > c: COMMA

Re: make bootstrap for gcc

2000-11-22 Thread Paul D. Smith
As I mentioned before, this is a problem with GCC, not make; try asking the GCC folks about it. Thanks... -- --- Paul D. Smith <[EMAIL PROTECTED]>HASMAT--HA Software Methods & Tools "Please remain calm...I may be

Re: Strange behaviour

2000-11-22 Thread Paul D. Smith
%% qun-ying <[EMAIL PROTECTED]> writes: q> I want the object files to be placed in the object directory and latter q> link against them. You cannot use vpath/VPATH for this; that's not what it's for. See my web site below for some details on VPATH and why it doesn't do what you think. --

make bootstrap for gcc

2000-11-22 Thread Ivy Chiu
Hello, I am encountering the following errors. Did I forget to install something else?? ./xgcc -B/usr/local/rs6000-ibm-aix4.3.3.0/bin/ -B./ -I/usr/local/rs6000-ibm-aix4.3.3.0/include -O2 -DIN_GCC -DHAIFA-g -I./include -g1 -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED-I. -I/gcc

Strange behaviour

2000-11-22 Thread qun-ying
Hi, I have encounter this stragne behaviour. It is properly due to my writing of the Makefile. But how do I solve this kind of problem? I want the object files to be placed in the object directory and latter link against them. I am running make 2.79.1 under Linux 2.2.17 (slackware 7.1) with g

./ in implicit rule patterns is order dependent

2000-11-22 Thread raf
the following Makefile (and make-3.79.1): DIRA=. DIRB=b CFLAGS_A=-O2 CFLAGS_B=-g $(DIRA)/%.o: $(DIRA)/%.c gcc $(CFLAGS_A) -o $@ -c $< $(DIRB)/%.o: $(DIRB)/%.c gcc $(CFLAGS_B) -o $@ -c $< and the command: m

Re: cannot exec `as': A file or directory does not exist

2000-11-22 Thread Paul D. Smith
This isn't a make problem, it's a problem with the build of GCC. I suggest you contact the GCC folks for assistance. Your paths all seem to be very strange, and missing the first part: /gcc_install/gcc/xgcc -B/gcc_install/gcc/ ... \ -I/gcc-2.95.2/gcc -I/gcc-2.95.2/gcc/config -I/gcc-2.95.2

cannot exec `as': A file or directory does not exist

2000-11-22 Thread Ivy Chiu
Hello, I am having a problem installing "gcc" and "make". These are the setup I have on my system: ic88aix.watson.ibm.com-root:/gcc_install/gcc> ls -l /usr/local total 32 drwxr-xr-x 2 root system 512 Nov 16 10:39 bin drwxr-xr-x 2 root system 512 Nov 16 10:39 in