install:mac_compiling_homebrew

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
howto:mac_compiling_homebrew [2015/03/17 20:28] paffenholzinstall:mac_compiling_homebrew [Unknown date] (current) – removed - external edit (Unknown date) 127.0.0.1
Line 1: Line 1:
-=== Compiling polymake === 
  
-Note again that this has only been tested on **Mac OS 10.9** and **10.10** (and it is unlikely that it will work with anything older than 10.8. For 10.8 you have to make sure that your command line tools are from Sep 2013 or newer).  
- 
-Get the ''polymake'' sources (either the latest release, or do a checkout of the perpetual beta, see [[:download/start|here]] for links. If you used a tar ball unpack it and switch into the polymake directory. If you use the perpetual beta, switch into the directory trunk. Now issue 
-<code> 
-./configure --without-fink LDFLAGS=' -stdlib=libstdc++' CXXFLAGS=-I/usr/include/c++/4.2.1 
-</code> 
-or, if you do not want to install into /usr/local (or you don't have sudo rights), then  
-<code> 
-./configure --prefix=$HOME/polymake-install --without-fink LDFLAGS=' -stdlib=libstdc++' CXXFLAGS=-I/usr/include/c++/4.2.1 
-</code> 
-where $HOME/polymake-install can be any directory in your $HOME folder.  
- 
-If you have never used java before you will get a popup window that asks you to install java. Please do so and rerun the above command.  
- 
-Once this has finished do 
-<code> 
-make 
-make install 
-</code> 
-The first command will take a while. If you have not specified a local directory then the second command should be 
-<code> 
-sudo make install 
-</code> 
-This will ask for your password.