Re: [Pyobjc-dev] pyobjc & py2app & OSX version
Brought to you by:
ronaldoussoren
From: Ronald O. <ron...@ma...> - 2015-05-05 16:16:11
|
> On 23 Mar 2015, at 13:38, Karsten Wolf <kar...@go...> wrote: > > Hello, > > is it now possible to create pyobjc/py2app applications for system versions lower than the compiling system? > > The problem is that customer A (who needs the py2app programs) is on 10.6 and customer B urges me to upgrade to 10.7 for vpn/network reasons. > > Is that solvable without maintaining (and permanently rebooting) 2 systems? It is, although you still have to test to be sure. Providing tested binaries for PyObjC is on my wishlist, and has been for quite some time. With those binaries it would be a trivial task. In general it should be possible to build an application needs to be deployed on on older OSX release by setting the deployment target appropriately[1] when building the C code. The hard part is making sure that the build process doesn’t pick up unwanted dependencies, especially when using autoconf. PyObjC, and Python itself, should be safe in that regard. Ronald [1] Ignoring PPC, Apple’s toolchain doesn’t support that with recent enough releases of Xcode. > > -karsten > > > ------------------------------------------------------------------------------ > Dive into the World of Parallel Programming The Go Parallel Website, sponsored > by Intel and developed in partnership with Slashdot Media, is your hub for all > things parallel software development, from weekly thought leadership blogs to > news, videos, case studies, tutorials and more. Take a look and join the > conversation now. http://goparallel.sourceforge.net/ > _______________________________________________ > Pyobjc-dev mailing list > Pyo...@li... > https://lists.sourceforge.net/lists/listinfo/pyobjc-dev |