Re: 8u build failure win7/cygwin64

2015-04-29 Thread gary.ad...@oracle.com
I've found that disable ccache fixes problems building e_acos ( the first native file in the jdk portion of the build). On 4/29/15 4:23 AM, Magnus Ihse Bursie wrote: On 2015-04-29 09:50, Semyon Sadetsky wrote: Hello, Please advise what is the source of the next issue:

Re: RFR: JDK-8165946: buildjdk logic is incomplete when separate sysroots needed

2016-09-14 Thread gary.ad...@oracle.com
I'll add the extra check before pushing. if test "x$BUILD_SYSROOT" = x; then 796 BUILD_SYSROOT="$BUILD_DEVKIT_SYSROOT" fi Before there was a devkit option it was common to set sysroot and toolchain path separately. I don't know if the overlap precedence was ever specified. On

RFR: JDK-8205055: Fix compilation optimization errors with new Solaris toolchain

2018-06-14 Thread gary.ad...@oracle.com
Locally tested the fix below and via mach5 jobs. The ~50 failed tests all completed successfully. It'd be good for Erik to repeat his full testing with this patch included in case it blocked other issues from being observed. This fix can be integrated after the sync from jdk/client.  Issue:

Fwd: RFR: JDK-8202319: Fix compilation warnings in Solaris debug builds for DevStudio 12.6

2018-04-26 Thread gary.ad...@oracle.com
Adding build-dev and hotspot-runtime-dev aliases. Forwarded Message Subject: RFR: JDK-8202319: Fix compilation warnings in Solaris debug builds for DevStudio 12.6 Date: Thu, 26 Apr 2018 12:35:28 -0400 From: Gary Adams <gary.ad...@oracle.com> Reply-To: g

Re: Fwd: RFR: JDK-8202319: Fix compilation warnings in Solaris debug builds for DevStudio 12.6

2018-05-03 Thread gary.ad...@oracle.com
Attached an updated patch for 8202319. Kim or David could you please sponsor the push of the patch. On 4/26/18 6:49 PM, gary.ad...@oracle.com wrote: Adding build-dev and hotspot-runtime-dev aliases. Forwarded Message Subject: RFR: JDK-8202319: Fix compilation warnings

Re: JDK-8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()

2018-02-01 Thread gary.ad...@oracle.com
First pass over the code I disabled the compilation flag and then did quick substitution for the easier functions. I commented out the WSASendDisconnect calls so I could see what tests would fail if the function was just removed. I have a replacement now that uses "shutdown(fd,SD_SEND)", but I

Re: JDK-8080990: libdt_socket/socket_md.c(202) : warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW()

2018-02-07 Thread gary.ad...@oracle.com
A fresh webrev rebased with latest jdk/jdk repos:  http://cr.openjdk.java.net/~gadams/8080990/webrev.03/index.html If there are no more comments, I'll check in locally with these reviewers   clanger,chegar,erikj and cut patches on Thurs AM. On 2/5/18 2:15 PM, Gary Adams wrote: One more to