[PD-dev] Current GIT master builds are unable to load Gem on Windows

2018-03-19 Thread Lucas Cordiviola
Oliver and I did some tests on compiling Pd for windows. We found that the current master branch can't load Gem. We can load it with Miller's build or with self builds from "pure-data-mingw-autotools2" branch from January ‎9, ‎2018. We are sure this is not an "msvcr71.dll" issue or a "-lib"

Re: [PD-dev] Mac SDK version for externals

2018-03-19 Thread Alex
ahh yes, i'm using tr1 now in a branch, have to get make_shared going.. moving along! On Mon, Mar 19, 2018 at 2:57 PM, Dan Wilcox wrote: > I believe the new feature C++11 namespace before it was finalized to std:: > was something like tr1::. You could check the C++ version

Re: [PD-dev] Mac SDK version for externals

2018-03-19 Thread Dan Wilcox
I believe the new feature C++11 namespace before it was finalized to std:: was something like tr1::. You could check the C++ version and set/typdef the namespace as required. Look in the OpenFrameworks ofConstants.h header. > On Mar 19, 2018, at 10:49 PM, Alex wrote: > >

Re: [PD-dev] Mac SDK version for externals

2018-03-19 Thread Alex
using my cmake setup in the jit_expr project I was able to build just now for 10.9 but no lower, going below 10.9 didn't allow it to find the std::shared_ptr maybe I can get lower somehow? Either way, this should be more useful for more people :) Thanks for the info Dan! On Mon, Mar 19, 2018 at

Re: [PD-dev] Mac SDK version for externals

2018-03-19 Thread Dan Wilcox
Also, if you're targeting C++11, I think you'll have to use a min of at least 10.7 (from https://stackoverflow.com/questions/7482026/can-i-use-the-latest-features-of-c11-in-xcode-4-or-osx-lion

Re: [PD-dev] Mac SDK version for externals

2018-03-19 Thread Dan Wilcox
The compiler builds for the current system by default. You have to set the min deployment target when building. Add this flag to you makefile: --mmacosx-version-min=10.6 The current version for Pd is 10.6 which is the first version that supported i386 (ie. Intel processors). > On Mar 19,