Re: [cmake-developers] [RESEND] [PATCH] x32-abi support #15994 (without line wrapping!)

2017-02-28 Thread Brad King
On 02/28/2017 03:38 PM, Rolf Eike Beer wrote: >> +/usr/local/libx32 >> /usr/local/lib64 >> /usr/local/lib >> +/usr/libx32 >> /usr/lib64 >> /usr/lib >> /usr/X11R6/include > And so on… > > Shouldn't we think of

Re: [cmake-developers] [RESEND] [PATCH] x32-abi support #15994 (without line wrapping!)

2017-02-28 Thread Rolf Eike Beer
> + PATH_SUFFIXES libx32 lib64 lib lib32 > + PATH_SUFFIXES lib64 libx32) > +/usr/local/libx32 > /usr/local/lib64 > /usr/local/lib > +/usr/libx32 > /usr/lib64 > /usr/lib > /usr/X11R6/include > +

Re: [cmake-developers] [RESEND] [PATCH] x32-abi support #15994 (without line wrapping!)

2017-02-28 Thread Brad King
On 02/27/2017 08:50 AM, Steven Newbury wrote: >> we now use gitlab.kitware.com merge requests. > > Right, I'll do that. For reference, the MR is [1]. Thanks, -Brad [1] https://gitlab.kitware.com/cmake/cmake/merge_requests/532 -- Powered by www.kitware.com Please keep messages on-topic and

Re: [cmake-developers] [RESEND] [PATCH] x32-abi support #15994 (without line wrapping!)

2017-02-27 Thread Steven Newbury
On Mon, 2017-02-27 at 08:36 -0500, Brad King wrote: > On 02/26/2017 08:30 PM, Steven Newbury wrote: > > This is based on the patch attached to the > > original Manits bug: > > https://cmake.org/Bug/view.php?id=15994#c40584 > > > > I have cleaned up all the hard coded paths so > > hopefully it has

Re: [cmake-developers] [RESEND] [PATCH] x32-abi support #15994 (without line wrapping!)

2017-02-27 Thread Brad King
On 02/26/2017 08:30 PM, Steven Newbury wrote: > This is based on the patch attached to the > original Manits bug: > https://cmake.org/Bug/view.php?id=15994#c40584 > > I have cleaned up all the hard coded paths so > hopefully it has now no effect on non-x32 systems. > > It probably needs tests to

[cmake-developers] [RESEND] [PATCH] x32-abi support #15994 (without line wrapping!)

2017-02-26 Thread Steven Newbury
This is based on the patch attached to the original Manits bug: https://cmake.org/Bug/view.php?id=15994#c40584 I have cleaned up all the hard coded paths so hopefully it has now no effect on non-x32 systems. It probably needs tests to be updated to support x32 where appropriate. ---