bugmake - Bugs: bug #16145, .SECONDARY: prevents non-existent...

 
 

bug #16145: .SECONDARY: prevents non-existent dependency from forcing rebuild

Submitter:  Jay Berkenbilt <jayberkenbilt>
Submitted:  Tue 21 Mar 2006 08:29:14 PM UTC
   
 
Severity:  3 - Normal Item Group:  Bug
Status:  Not A Bug Privacy:  Public
Assigned to:  None Open/Closed:  Closed
Component Version:  4.0 Operating System:  None
Fixed Release:  None Triage Status:  None
* Mandatory Fields

Add a New Comment Rich Markup
   

Tue 21 Mar 2006 10:05:54 PM UTC, comment #5: 

Ok, closing as per request.  Cheers!

Paul D. Smith <psmith>
Group administrator
Tue 21 Mar 2006 10:02:28 PM UTC, comment #4: 

Either of your proposed solutions will work fine for me, and the first one (mentioning things explicitly to prevent them from being removed) is what I've done for years and was doing until I decided that, after having been using gnu make for 10 years, it was time to reread the documentation all the way through see what new features  had been introduced! I failed to realize that one of the side effects of a target being declared secondary is that make doesn't consider it out of date when it doesn't exist, but when I think about it, that's pretty obviously the correct behavior since otherwise every build would end up regenerating it  if it disappeared.

I can't convince you that I need a global .SECONDARY because I don't believe it myself now that I actually correctly understand what it does. :-)  I generally prefer to have my intermediate targets stick around, but there are ways to make this happen, as you pointed out.  Actually, I don't think my current build system has any implicit intermediate targets at the moment since it invokes make with -rR anyway, though I might have coded some chain of implicit rules at some point and forgotten about it.  No matter though.

Thanks for the prompt responses.  I consider this issue resolved.  Feel free to close it.

Jay Berkenbilt <jayberkenbilt>
Tue 21 Mar 2006 09:35:02 PM UTC, comment #3: 

I think you have two choices, at least one of which should work :-).  Either way I think you have to get the .SECONDARY: global target out of there.

Anyway, you can do two things: first, you can mention all the files that would otherwise be considered intermediate and removed (which is what you're trying to avoid by using the global .SECONDARY:, right?) as prerequisites of a target.  It doesn't take much at all to convince make that a target is not intermediate: any mention of it will do the trick.  You don't really show in your example why you want .SECONDARY: globally: none of the targets there would be considered intermediate anyway.  But suppose you had some, you could create a new target which depended on the intermediate files.  This target might even be USEFUL in some situations, if someone just wanted to build those files.

The other thing you can do is change the global .SECONDARY: to a .SECONDARY with a list of just those items you want to be considered secondary...  and hopefully that wouldn't include the foo.h ones :-/.  This would solve the problem as well.

I think to be more specific we'd need to understand why you needed global .SECONDARY: in the first place.

Paul D. Smith <psmith>
Group administrator
Tue 21 Mar 2006 09:14:23 PM UTC, comment #2: 

Okay, I've studied this and agree with your analysis that it is working as intended. Unfortunately, this seems to leave me without any ability to tell make not to delete intermediate targets without also telling it not to try to rebuild things that have dependencies that don't exist.  Am I missing something?  Thanks for the pointer to the other bug, which I missed in my search for other bugs relating to this problem.

Jay Berkenbilt <jayberkenbilt>
Tue 21 Mar 2006 08:55:36 PM UTC, comment #1: 

I believe this is intended behavior as described in GNU make manual. See bug #15584 (starting from comment #6) for more information. In your case all targets are SECONDARY.

The reason it worked differently in 3.80 is because this version does not handle .SECONDARY: without prereqs. This was fixed for 3.81.

Boris Kolpackov <bosk>
Group Member
Tue 21 Mar 2006 08:29:14 PM UTC, original submission:  

This is with 3.81rc2 as checked out of CVS on March 21, 2006.

With the following makefile:

# ----------
ifdef BREAK_MAKE
.SECONDARY:
endif

all: a.2

a.1:
touch a.1

a.2: a.1 a.h

a.h:

%.2: %.1
touch $@

clean:
rm a.1 a.2
# ----------

running make once causes a.1 and a.2 to be updated, and running make subsequently causes a.2 to be updated as expected because a.2 depends upon the non-existent a.h, and a.h has a target with no dependencies and no rules.  (This is normal for automatically generated dependency files.)  make -d -rR on a subsequent run shows the following output with 3.81rc2 (without BREAK_MAKE defined):

GNU Make 3.81rc2
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i686-redhat-linux-gnu
Reading makefiles...
Reading makefile `/tmp/m'...
Updating makefiles....
 Considering target file `/tmp/m'.
  Looking for an implicit rule for `/tmp/m'.
  No implicit rule found for `/tmp/m'.
  Finished prerequisites of target file `/tmp/m'.
 No need to remake target `/tmp/m'.
Updating goal targets....
Considering target file `all'.
 File `all' does not exist.
 Looking for an implicit rule for `all'.
 No implicit rule found for `all'.
  Considering target file `a.2'.
   Looking for an implicit rule for `a.2'.
   Trying pattern rule with stem `a'.
   Trying implicit prerequisite `a.1'.
   Found an implicit rule for `a.2'.
    Considering target file `a.1'.
     Finished prerequisites of target file `a.1'.
    No need to remake target `a.1'.
    Pruning file `a.1'.
    Considering target file `a.h'.
     File `a.h' does not exist.
     Looking for an implicit rule for `a.h'.
     No implicit rule found for `a.h'.
     Finished prerequisites of target file `a.h'.
    Must remake target `a.h'.
    Successfully remade target file `a.h'.
   Finished prerequisites of target file `a.2'.
   Prerequisite `a.1' is older than target `a.2'.
   Prerequisite `a.1' is older than target `a.2'.
   Prerequisite `a.h' of target `a.2' does not exist.
  Must remake target `a.2'.
touch a.2
Putting child 0x096823f8 (a.2) PID 14360 on the chain.
Live child 0x096823f8 (a.2) PID 14360
Reaping winning child 0x096823f8 PID 14360
Removing child 0x096823f8 PID 14360 from chain.
  Successfully remade target file `a.2'.
 Finished prerequisites of target file `all'.
Must remake target `all'.
Successfully remade target file `all'.

The output is identical with 3.80 except for cosmetic differences.

With BREAK_MAKE defined (i.e., an empty .SECONDARY: rule), the results are the same with 3.80, but 3.81rc2 (and 3.81rc1 as well) generate this with make -d -rR BREAK_MAKE=1:

GNU Make 3.81rc2
Copyright (C) 2006  Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.

This program built for i686-redhat-linux-gnu
Reading makefiles...
Reading makefile `/tmp/m'...
Updating makefiles....
 Considering target file `/tmp/m'.
  Looking for an implicit rule for `/tmp/m'.
  No implicit rule found for `/tmp/m'.
  Finished prerequisites of target file `/tmp/m'.
 No need to remake target `/tmp/m'.
Updating goal targets....
Considering target file `all'.
 File `all' does not exist.
 Looking for an implicit rule for `all'.
 No implicit rule found for `all'.
  Considering target file `a.2'.
   Looking for an implicit rule for `a.2'.
   Trying pattern rule with stem `a'.
   Trying implicit prerequisite `a.1'.
   Found an implicit rule for `a.2'.
    Considering target file `a.1'.
     Finished prerequisites of target file `a.1'.
    No need to remake target `a.1'.
    Pruning file `a.1'.
    Looking for an implicit rule for `a.h'.
    No implicit rule found for `a.h'.
   Finished prerequisites of target file `a.2'.
   Prerequisite `a.1' is older than target `a.2'.
   Prerequisite `a.1' is older than target `a.2'.
   Prerequisite `a.h' of target `a.2' does not exist.
  No need to remake target `a.2'.
 Finished prerequisites of target file `all'.
Must remake target `all'.
Successfully remade target file `all'.
make: Nothing to be done for `all'.

Observe that make recognizes that a.h does not exist, but then still decides that a.2 does not need to be remade.  I believe this is not the intended behavior of .SECONDARY:, which is only supposed to affect intermediate targets.  This bug causes files that have automaticly generated dependencies using this common technique to not get rebuilt when one of their dependencies disappears.  I would therefore consider it a serious bug.

Please let me know if you need additional information to reproduce this, if my explanation is not clear, or if this is actually behaving as intended (which seems unlikely since there are no intermediate targets involved here).

Hopefully my makefile will be a good starting point for a test case for the test suite.  I can attempt to generate a patch for the test suite so that this bug causes a test failure if you would like, and I will probably do that if I hear nothing within a few days.

Thanks!  I'm looking forward to 3.81 -- it fixes some problems that prevent 3.80 from working at all with my build system.

Jay Berkenbilt <jayberkenbilt>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

Only logged-in users can vote.

 

Follow 2 latest changes.

Date Changed by Updated Field Previous Value => Replaced by
2006-03-21 psmith StatusNone Not A Bug
    Open/ClosedOpen Closed

Back to the top

Powered by Savane 3.14-ee00.
Corresponding source code