Re: RFR: 8211296: Remove HotSpot deprecation warning suppression for Mac/clang

2018-10-01 Thread David Holmes
Hi Kim, On 1/10/2018 1:21 PM, Kim Barrett wrote: On Sep 30, 2018, at 4:51 PM, David Holmes wrote: Hi Kim, Thanks for looking at this. (2) Remove call to _dyld_bind_fully_image_containing_address, which seems to have been deprecated since MacOSX 10.5. Instead use the recommended

Re: RFR: 8211296: Remove HotSpot deprecation warning suppression for Mac/clang

2018-10-01 Thread David Holmes
On 2/10/2018 4:35 AM, Kim Barrett wrote: On Oct 1, 2018, at 2:27 AM, David Holmes wrote: On 1/10/2018 1:21 PM, Kim Barrett wrote: The current library may have been previously only dlopen’ed with RTLD_LAZY. Reopening with RTLD_NOW forces resolution of all undefined symbols in that shared

Re: RFR: 8211296: Remove HotSpot deprecation warning suppression for Mac/clang

2018-10-01 Thread Kim Barrett
> On Sep 30, 2018, at 4:51 PM, David Holmes wrote: > > Hi Kim, Thanks for looking at this. >> (2) Remove call to _dyld_bind_fully_image_containing_address, which >> seems to have been deprecated since MacOSX 10.5. Instead use the >> recommended replacement "dlopen(RTLD_NOW)". However, it

Re: RFR: 8211296: Remove HotSpot deprecation warning suppression for Mac/clang

2018-10-01 Thread Kim Barrett
> On Oct 1, 2018, at 2:27 AM, David Holmes wrote: > > On 1/10/2018 1:21 PM, Kim Barrett wrote: >> The current library may have been previously only dlopen’ed with RTLD_LAZY. >> Reopening with RTLD_NOW >> forces resolution of all undefined symbols in that shared object, which >> appears to be