Difference between revisions of "Building GNUstep with Clang"

From GNUstepWiki
Jump to navigation Jump to search
Line 10: Line 10:
 
         make install
 
         make install
  
5) Build base, gui and back and install them using:
+
4) Build base, gui and back and install them using:
 
   
 
   
 
         make install
 
         make install
  
 
That should be all there is too it.  Not much, but a few little details which might serve to make it enough of a pain to discourage some people.
 
That should be all there is too it.  Not much, but a few little details which might serve to make it enough of a pain to discourage some people.

Revision as of 11:20, 23 October 2018

1) Build using the instructions here: http://clang.llvm.org/get_started.html

2) Build libobj2 and install it:

       make CC=clang CXX=clang++
       make install
             

3) Build gnustep-make like so and install it:

       ./configure --with-library-combo=ng-gnu-gnu
       make install

4) Build base, gui and back and install them using:

       make install

That should be all there is too it. Not much, but a few little details which might serve to make it enough of a pain to discourage some people.