Re: : JDK8 build fails in hotspot (hsx/hotspot-main/hotspot/rev/a297b0e14605 patch?)

2012-06-15 Thread Mikael Gerdin
Lana, This is indeed an issue with HotSpot and GCC 4.7. It's fixed by http://hg.openjdk.java.net/hsx/hotspot-gc/hotspot/rev/a297b0e14605 I'm not sure when this will end up in jdk8 master but I think the change will be in hs24-b14. /Mikael On 2012-06-13 18:51, Lana Steuck wrote: Forwarding Ma

Make assistance needed: make tries to create missing included make files

2012-06-15 Thread David Holmes
Here's the situation. We add a -include for a possibly non-existent custom makefile, eg foo.make. When the file isn't present the build tries to build the precompiled headers - Huh! ??? This is due to the following: 1. If "-include foo.make" fails to find foo.make it tries to create it. For t

Re: Make assistance needed: make tries to create missing included make files

2012-06-15 Thread Kelly O'Hair
foo.make: @if [ !-f foo.make ] ; then \ echo "foo.make cannot be found"; \ fi -include foo.make Just a thought. Defining a rule should get rid of the implicit search. -kto On Jun 15, 2012, at 4:59 PM, David Holmes wrote: > Here's the situation. We add a -includ