Re: [R-pkg-devel] CRAN's mysterious behavior building OS/X binaries for OpenMx

2018-09-25 Thread Dirk Eddelbuettel
On 25 September 2018 at 09:16, Joshua N Pritikin wrote: | We finally figured out why our binaries were failing to build on OS/X, | after more than a year of misery. | | We use C++ exceptions and try/catch blocks like this, | | try { | // stuff here |

Re: [R-pkg-devel] CRAN's mysterious behavior building OS/X binaries for OpenMx

2018-09-25 Thread Joshua N Pritikin
We finally figured out why our binaries were failing to build on OS/X, after more than a year of misery. We use C++ exceptions and try/catch blocks like this, try { // stuff here } catch (const std::exception& e) { This works great with gcc,