-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OSX Installation Without Xcode? #134
Comments
I figured it out ... with some makefile modifications I just successfully ran ofSketch with ONLY command line tools installed. !! The key is that the "sysroot" is actually just the root directory and the "/" I'm updating makefiles and we should be able to avoid much pain getting started now .... testing on 10.9. |
// todo: finish making time machine :) |
OK. Did a lot of research on the absolute easiest way to get up and running on OSX. On 10.9, the easiest way will be to have ofSketch launch an install script with On 10.8, it seems that the only legit way to do it is for the user to sign into the apple developer site, download command line tools and run it. Unfortunately the 10.8 version of xcode-select does not have the --install flag, which hooks into Apple's software update CDN. I looked deep into the software update route and it seems that there are no developer tools available via that route for 10.8. I want to look into it to see if we can bundle command line tools with ofSketch, but I kind of doubt it ... Here's a nice summary: http://www.moncefbelyamani.com/how-to-install-xcode-homebrew-git-rvm-ruby-on-mac/#clt-ml |
I guess the computers in the 416 are running 10.8. I remember trying to run |
Yeah, that is probably right. Although I swear at least one of them was On Wed, Oct 15, 2014 at 7:40 AM, Michael Hadley notifications@github.com
|
Just in case: there is no absolute necessity to install xcode toolkit to compile C++. You may, instead, use brew (for instance). Just like in Windows you can use mingw-w64. And if you are going to make user code really cross-platform, I'd recommend you to consider using a single toolchain (gcc) everywhere. Or even provide your own version of it (in advance). |
Ideally we would install nothing to get running, but alas we usually have to install Xcode.
Xcode from the app store is the easiest way to get going.
The latest command line tools command_line_tools_for_osx_mountain_lion_april_2014.dmg for 10.8
do not contain any SDK bundles so it is required to fully install Xcode.They do actually -- it's just the system Root/
To Do:
The text was updated successfully, but these errors were encountered: