Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread nikhil jain
Hi Tony, 1) I always set -j 4. 2) No, I do not set -l flag. 3) The BUILD never fails. The binary which is generated causes segmentation fault. It works perfectly If I build in 3.81 GMAKE. 4) Makefile is handwritten. 5) No, It never succeed on any number of invocation. Just to again notify - Ther

Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread Paul Smith
On Mon, 2019-09-30 at 13:51 +0530, nikhil jain wrote: > There are 2 parts to this problem - > > 1) Build the code using v3.81 and v4.2 -> In both cases, builds is > happening correctly. > 2) Segmentation fault -> While running the binary generated from the build, > it segfaults with v3.81 and work

Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread nikhil jain
For example, maybe you're using $(wildcard ...) to gather filenames and the difference in the order returned is causing your code to be linked differently (in 3.81 I believe wildcard also sorted output while in 4.2.1 it doesn't--however in 4.3 it will again). Do you confirm the above behavior can

Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread Kaz Kylheku (gmake)
On 2019-09-30 01:21, nikhil jain wrote: Hi Tony, 1) I always set -j 4. 2) No, I do not set -l flag. 3) The BUILD never fails. The binary which is generated causes segmentation fault. It works perfectly If I build in 3.81 GMAKE. Possibly, what is going on that you have some $(wildcard ...) ma

Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread Paul Smith
It would be helpful if you could teach your email client to properly quote replies (or find a better one). Also we prefer inline responses rather than top-quoting. On Mon, 2019-09-30 at 19:48 +0530, nikhil jain wrote: > For example, maybe you're using $(wildcard ...) to gather filenames > and the

Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread nikhil jain
RELAX! I will do that. Thanks for your help. I will revert back with my findings and ask for help if required. Thanks Nikhil On Mon, Sep 30, 2019 at 9:23 PM Paul Smith wrote: > It would be helpful if you could teach your email client to properly > quote replies (or find a better one). Also we

Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread Christian Hujer
Hello Nikhil, On Sat, Sep 28, 2019 at 1:54 AM nikhil jain wrote: > I am seeing very different behaviors in my build between make version 3.81 > and 4.2 > > My build compiles correctly but fails with segmentation fault on 4.2 > version. > My build compiles correctly and executes also correctly on

Re: GMAKE 3.81 vs GMAKE 4.2

2019-09-30 Thread nikhil jain
Hi, Thanks for the answers. You know what! It worked with GMAKE 4.2.91 It is the test version sent to me in the mail thread by a GMAKE expert. I would probably move to it. So, it looks like the wildcards issue then ? thanks Nikhil On Tue, Oct 1, 2019 at 1:44 AM Christian Hujer wrote: > Hell