On Mon, 02 Mar 2009 14:02:46 +0000 [email protected] wrote:
> After I upgrade nmake to the 2008-11-04 version, I am getting the following  
> warning messages:

> make: ".MAKEINIT", line 467: warning: .SEMAPHORE: maximum semaphore count  
> is 254

> After I did some research, I have identified that the above warning is  
> caused line#3 and 738 in our global makefile.

> 3 set recurse:=4

> 736 .CHANGERECURSE_LEVEL : .VIRTUAL .BEFORE .MAKE .FORCE
> 737 if "$(~.ARGS:M=.CVSUPDATE|cvsupdate)"
> 738 set recurse:=$(CVSUPDATERECURSE)
> 739 end
> 740
> 741 .MAKEINIT : .CHANGERECURSE_LEVEL .STATICLINK .SET_LIB_BIN_PATHS 
> .SET_ARCHITECTURE_RELATED.
> 742

> 854 CVSUPDATERECURSE=16

> The T1 value of in the line#4186 of the base makefile set to bigger than  
> 256 and trigger warning.
> 4186 T1 := $(-recurse:/[^0-9]//G)

change Makerules.mk line 4186 to

        T1 := $(-recurse:/:/ /G:N=[0-9]*:O=N)

this will be fixed in the next release
thanks

_______________________________________________
ast-users mailing list
[email protected]
https://mailman.research.att.com/mailman/listinfo/ast-users

Reply via email to