Earlier quoted context omitted.
There's Apportable for Android ( http://www.apportable.com ), which—I'm guessing—likely uses Cocotron under the hood: http://www.cocotron.org But, in general, not very. Objective-C compilers certainly exist for Windows and Linux, but aren't worth much without Apple's frameworks.
Speak for yourself. I do game dev in objc, with my own framework, and find it infinitely more useful than c++ even without the apple toolkits.
Etoile: a GNUStep-based Linux GUI written in Objective-C
41–46 of 46 posts
Re: Etoile: a GNUStep-based Linux GUI written in Objective-C
#42Apple has a patent on the Dock. https://www.google.com/patents/US7434177 And clickable pull-down menus in the menu bar. https://www.google.com/patents/USD629412 The legal system strikes again.
The Dock patent is specifically on the dynamic resizing and repositioning of icons when moused over. A plain collection of icons won't infringe this patent. The second patent is a design patent, which means you'd have to have a menu exactly like that to infringe. Funnily enough, one of the icons in the figures in the first patent is for Internet Explorer. I think I also spied one for Word.
Re: Etoile: a GNUStep-based Linux GUI written in Objective-C
#43How viable nowadays is cross-platform application or server software development in Objective-C compared to the same in C++? GNUstep appears to be the best (only) solution for the former; is that so? Edit: To clarify, I'm asking this as a developer who does most work on Linux. My interest in Obj-C is primarily due to its Smalltalk-like message passing mechanism. Edit 2: clarity.
I played with it last weekend. Not viable. Even the ubuntu packages don't produce a working dev environment. GNUstep is a major, standing lost opportunity for the free-software world. Imagine if the community had just taken openstep and don't a respectable job of this proven platform, instead of life in the wilderness with gnome/kde/unity/etc. Etoile is cool - I'd recommend they focus on making it easy to get a comma…
For less popular stuff, even the most current release (trusty) is not likely to be kept up-to-date unless one of the core developers is an Ubuntu user. It's not as bad as Debian (used to be?) and I can't come up with an example off the top of my head of something that I needed that was too old and still is, but the most recent memory was Vim, trying to install YouCompleteMe, they had already come out with Vim 7.4 and the most current release of Ubuntu only had 7.3, with about 600 patches behind current and ~75 patches too few to be supported.
(It works now. This is not a bug report. You should file one if this GNUstep interests you, unless it's really an upstream problem.)
Re: Etoile: a GNUStep-based Linux GUI written in Objective-C
#44Earlier quoted context omitted.
I played with it last weekend. Not viable. Even the ubuntu packages don't produce a working dev environment. GNUstep is a major, standing lost opportunity for the free-software world. Imagine if the community had just taken openstep and don't a respectable job of this proven platform, instead of life in the wilderness with gnome/kde/unity/etc. Etoile is cool - I'd recommend they focus on making it easy to get a comma…
Just a note, I would not use "Ubuntu doesn't even have" as an argument that something is not viable, since Ubuntu has its roots in Debian and there is a tendency to have old crap in the stable release. For less popular stuff, even the most current release (trusty) is not likely to be kept up-to-date unless one of the core developers is an Ubuntu user. It's not as bad as Debian (used to be?) and I can't come up with a…
Re: Etoile: a GNUStep-based Linux GUI written in Objective-C
#45Earlier quoted context omitted.
Just a note, I would not use "Ubuntu doesn't even have" as an argument that something is not viable, since Ubuntu has its roots in Debian and there is a tendency to have old crap in the stable release. For less popular stuff, even the most current release (trusty) is not likely to be kept up-to-date unless one of the core developers is an Ubuntu user. It's not as bad as Debian (used to be?) and I can't come up with a…
Agree re ubuntu not being the last word on things. OP wants a cross-platform dev environment though. If a platform that is primarily for free unix is obviously broken on a major linux distro, it's a bad omen for its multiplatform prospects.
There are honestly a lot of major linux distros now.
If your cross-platform environment's users are all Gentoo, Fedora, NixOS, Exherbo, Arch Linux, your own homebrew distro, and some OSes with another kernel(s), you may have really achieved cross-platform support without finding Ubuntu support.
My favorite cross-platform project supports Ubuntu, but is lacking Fedora support. It was a major stumbling block for me (just one day), but the dependencies are nothing special, you can compile libuv and libgmp, ncurses, openssl, and libsigsegv pretty much anywhere that I care about (Mac, Linux, BSD).
The only time it mattered for me is when I've got half an hour to give a presentation and the audience is supposed to compile and install the stuff I'm using, but unexpectedly found to be using Fedora and I don't know what packages to tell them to get.
Re: Etoile: a GNUStep-based Linux GUI written in Objective-C
#46Earlier quoted context omitted.
Speak for yourself. I do game dev in objc, with my own framework, and find it infinitely more useful than c++ even without the apple toolkits.
Interesting. Could you expand a bit on the main advantages of Obj-C over C++ in your use case?
Obviously you don't want to have any method calls on code paths that need to be super fast, but I'm not afraid of using straight C for those. It's a 2D engine; and from the profiling I've done, drawing and updating the screen still dominates the CPU time used, and it works fast enough even on many, many years old hardware, so I'm not worried about performance.