Re: Make error messages

2019-09-22 Thread Paul Smith
On Wed, 2019-09-11 at 08:44 +0200, Andreas Schwab wrote: > On Sep 10 2019, Paul Smith wrote: > > > That didn't work, however, because particularly in recursive make > > the makefile name is likely not qualified with a path, but the > > current working directory when the build is invoked is not th

Re: Make error messages

2019-09-10 Thread Andreas Schwab
On Sep 10 2019, Paul Smith wrote: > That didn't work, however, because particularly in recursive make the > makefile name is likely not qualified with a path, but the current > working directory when the build is invoked is not the same as the one > where make is invoked--thus "Makefile" is at be

Re: make error

2011-10-06 Thread Carolina Carneiro
Thanks everybody for help!! I'm starting to use linux and I'm really lost! Tim, you were right!! Thank you very much!! Carolina. 2011/10/6 Tim Murphy > @psmith - happens to me all the time even on good weeks. :-) > > > Carolina, > > In the makefile this line is wrong: > > F90 = /opt/intel/com

Re: make error

2011-10-06 Thread Tim Murphy
@psmith - happens to me all the time even on good weeks. :-) Carolina, In the makefile this line is wrong: F90 = /opt/intel/composer_xe_2011_sp1.6.233 It tries to set the variable F90 to the path of the Intel Fortran 90 compiler but somehow this is a directory on your computer rather than a p

Re: make error

2011-10-05 Thread Paul Smith
On Wed, 2011-10-05 at 16:07 +0100, Tim Murphy wrote: > Your makefile is trying to execure a directory rather than a program. Hah! I didn't even notice it was a directory. Good catch. I'm having a really bad week. ___ Bug-make mailing list Bug-make@g

Re: make error

2011-10-05 Thread Tim Murphy
Your makefile is trying to execure a directory rather than a program. Cheers, Tim On 5 October 2011 15:48, Carolina Carneiro wrote: > Hi, > > I'm trying to use make to compile the drivers of a program I have to use, > called MOCASSIN. > But when I type make mocassin, this error menssage appears

Re: make error

2011-10-05 Thread Paul Smith
On Wed, 2011-10-05 at 11:48 -0300, Carolina Carneiro wrote: > Hi, > > I'm trying to use make to compile the drivers of a program I have to > use, called MOCASSIN. > But when I type make mocassin, this error menssage appears: > > root@carol-HP-Pavilion-dv5-Notebook-PC:/home/carol/mocassin/mocassin

Re: Make Error - trouble shooting

2011-02-23 Thread Paul Smith
On Wed, 2011-02-23 at 14:58 +0900, JamesHur(허성삼) wrote: > This is James Hur from Korea, I’ve been tried to solve specific > problem as follow and I got the answer through the googling. > > - Problem : When I run make with Makefile, I got error message > as : Makefile:1458:mixed implicit and

Re: Make error

2010-09-01 Thread Paul Smith
On Wed, 2010-09-01 at 14:15 +0530, Tejbahadur Singh // Viva wrote: > /bin/sh: line 1: glib-mkenums: command not found > make[2]: *** [s-enum-types-h] Error 127 This mailing list is for problems with the GNU make program itself. We can't possibly help troubleshoot all the hundreds of thousands of

Re: make error but no message

2009-03-13 Thread Jeremiah Perry
Okay, I just ran make 3.81 on Ubuntu 8.10 and had the same problem. I put those three files in a directory, type make, and nothing happens--nothing is built, and no error messages. It's not a big deal but it does seem like a bug. Anyone know what might be happening? Jeremiah On Thu, Mar 12, 2009

Re: make error but no message

2009-03-13 Thread Jeremiah Perry
I'm using 3.81 on cygwin. I found the problem on a prebuilt binary, then I compiled make from source today (on cygwin) to see if the problem would go away but it didn't. I suppose it could be a cygwin problemI'll try running it on Linux when I get home tonight. Jeremiah On Thu, Mar 12, 2009 a

Re: make error but no message

2009-03-12 Thread Sam Ravnborg
On Thu, Mar 12, 2009 at 02:07:56PM -0700, Jeremiah Perry wrote: > Hi, > > I don't know if the following is a bug or not, but it came to my > attention recently. I ran make on a project only to have make stop > abruptly with no error messages. After some digging, I found one of my > dependencies re

Re: Make Error

2008-09-05 Thread Brian Dessent
Ko Ken wrote: > After I upgraded my Cygwin install to the latest make (3.81), it caused > problems with the XPS make. When I try to Export to Project Navigator, the > following error occurs: > > "ublaze_top.make:146: *** target pattern contains no `%'. Stop." I don't understand what you are as

Re: make error

2004-11-01 Thread Paul D. Smith
There must be more to this message, printed before this. It looks like you're invoking GNU make with some invalid command-line options and it's printing the help and exiting. To know what the error is you'd have to look up _before_ the help is printed and see how you're invoking make and also wha

Re: make error

2004-03-14 Thread Paul D. Smith
%% "S. Umesh Babu" <[EMAIL PROTECTED]> writes: sub> i686-pc-cygwin for tossim simulation The version of GNU make that comes with the Cygwin toolkit has actually been modified by the Cygwin folks. For details of how that version works you should contact the Cygwin developers. sub> i got erro

Re: make error

2003-11-18 Thread spai
At 09:27 PM 11/17/2003 -0500, Paul D. Smith wrote: Please check the GNU make manual for information on make syntax. In particular, every shell command line in a make rule must begin with a TAB character (not spaces, but a TAB). Ahhh, didn't know about this rule for the shell command. Others worked

Re: make error

2003-11-17 Thread Paul D. Smith
Please check the GNU make manual for information on make syntax. In particular, every shell command line in a make rule must begin with a TAB character (not spaces, but a TAB). -- --- Paul D. Smith <[EMAIL PROTECTED]>

Re: make error with pro*c redhat 7.2

2003-06-06 Thread Paul D. Smith
%% "Guy L" <[EMAIL PROTECTED]> writes: gl> getting this error while using make with the precompiler Pro*C (linux gl> Redhat 7.2). gl> GNU Make version 3.79.1 gl> Here is the error: gl> [make] : *** [sample9.o] segmentation fault This means your compiler dumped core. Try running the

RE: make error with pro*c redhat 7.2

2003-06-06 Thread lasse.makholm
>From http://www.gnu.org/manual/make-3.79.1/html_mono/make.html#SEC124 : `[foo] signal description' These errors are not really make errors at all. They mean that a program that make invoked as part of a command script returned a non-0 error code (`Error NN'), which make interprets as failure,

Re: make error...can not create "ar"

2002-06-14 Thread Richard Dunham
Thank you...it worked like a champ. Richard "Paul D. Smith" wrote: > > %% Regarding make error...can not create "ar" ; you wrote: > > rd> # make ar > rd> /opt/SUNWspro/bin/cc -gar.c -o ar > > You can't make it because ar is a system utility (the library archive > creator, the thing

Re: make error...can not create "ar"

2002-06-14 Thread Paul D. Smith
%% Regarding make error...can not create "ar" ; you wrote: rd> # make ar rd> /opt/SUNWspro/bin/cc -gar.c -o ar You can't make it because ar is a system utility (the library archive creator, the thing that creates libXXX.a files). It is not a part of GNU make. rd> make[2]: ar: Comma

Re: make error

2001-10-14 Thread Paul D. Smith
%% BrianAllen <[EMAIL PROTECTED]> writes: b> after untarring the make file I did a './configure' and then a b> './sh. build.sh' successfully, I tried to do a ./make install and I b> got this error: b> # ./make install b> Making install in glob b> make[1]: Entering directory `/apps2/