Difference between revisions of "GNUstep under Ubuntu Linux"

From GNUstepWiki
Jump to navigation Jump to search
 
(77 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Objective C 2.0 on a fresh install of Ubuntu 12.10 Server
+
Usually it is a good a idea to just use the package manager of your distribution to get a stable and well integrated GNUstep environment:
  
<pre>
+
sudo apt-get install gnustep gnustep-devel
# Objective C 2.0 on a fresh install of Ubuntu 12.10 Server
 
  
# Dependencies
+
If you want to develop new apps and try the newest features consider the approach described below.
sudo aptitude install build-essential git subversion ninja cmake
 
# Dependencies for GNUStep Base
 
sudo aptitude install libffi-dev libxml2-dev libgnutls-dev libicu-dev
 
# Dependencies for libdispatch
 
sudo aptitude install libblocksruntime-dev libkqueue-dev libpthread-workqueue-dev autoconf libtool
 
cd ~
 
git clone git://github.com/nickhutchinson/libdispatch.git
 
svn co http://svn.gna.org/svn/gnustep/modules/core
 
svn co http://svn.gna.org/svn/gnustep/libs/libobjc2/trunk libobjc2
 
svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm
 
cd llvm/tools
 
svn co http://llvm.org/svn/llvm-project/cfe/trunk clang
 
  
cd ~/llvm
+
= Compiling Everything from Scratch  =
mkdir build
 
cd build
 
cmake ..
 
make -j8  # 8=your number of build CPUs
 
  
echo "export PATH=\$PATH:~/llvm/build/bin" >> ~/.bashrc
+
The following repo contains scripts that  compile and install everything needed for GNUstep Objective-C 2.0The script uses clang and libobjc2 for all the awesome new features like ARC, blocks/Grand Central Dispatch, etc.
echo "export CC=clang" >> ~/.bashrc
 
echo "export CXX=clang++" >> ~/.bashrc
 
source ~/.bashrc
 
clang -v
 
clang++ -v
 
  
cd ~/libobjc2
+
For example, to build GNUstep under Ubuntu 19.04, do:
mkdir build
 
cd build
 
cmake ..
 
make -j8
 
sudo -E make install
 
  
cd ~/core/make
+
git clone https://github.com/plaurent/gnustep-build
./configure --enable-debug-by-default --with-layout=gnustep
+
cd gnustep-build/ubuntu-19.04-clang-8.0-runtime-2.0/
make && sudo -E make install
+
./GNUstep-buildon-ubuntu1904.sh
echo ". /usr/GNUstep/System/Library/Makefiles/GNUstep.sh" >> ~/.bashrc
 
source ~/.bashrc
 
  
sudo /sbin/ldconfig  # Step required under Ubuntu 13.10
+
The demo.sh and demo-gui.sh scripts show example code and compilation examples (using command line as well as the recommended GNUmakefile approach.)
  
cd ~/core/base/
+
Reference manuals for GNUStep, including available APIs, etc, are available at http://www.gnustep.org/developers/documentation.html
./configure
 
make -j8
 
sudo -E make install
 
  
cd ~/libdispatch
+
General Note: When compiling your own code, it is generally good to tell clang both the family and version of the runtime: -fobjc-runtime=gnustep-2.0
sh autogen.sh
+
(The current version number can be had by looking at the latest ANNOUNCE filename in https://github.com/gnustep/libobjc2 (e.g., ANNOUNCE.1.8.1))
./configure CFLAGS="-I/usr/include/kqueue" LDFLAGS="-lkqueue -lpthread_workqueue -pthread -lm"
 
make -j8
 
sudo -E make install
 
sudo ldconfig
 
 
 
# ----------------------------------------------------------------------------------------
 
# TEST COMPILING SOME CODE FROM THE INTERNET
 
# ----------------------------------------------------------------------------------------
 
 
 
You can compile the following code with:
 
 
 
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobj-arc -fobjc-runtime=gnustep -fblocks  -lobjc  blocktest.m
 
 
 
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobj-arc -fobjc-runtime=gnustep -fblocks  -lobjc -ldispatch -lgnustep-base  Fraction.m helloGCD_objc.m
 
 
 
Note that with newer releases of the compiler, -fobj-arc may not be recognized and is not required.
 
 
 
 
 
 
 
cat > blocktest.m << EOF
 
#include <stdio.h>
 
 
 
int main() {
 
    void (^hello)(void) = ^(void) {
 
        printf("Hello, block!\n");
 
    };
 
    hello();
 
    return 0;
 
}
 
EOF
 
 
 
cat > helloGCD_objc.m << EOF
 
 
 
#include <dispatch/dispatch.h>
 
#import <stdio.h>
 
#import "Fraction.h"
 
 
 
int main( int argc, const char *argv[] ) {
 
  dispatch_queue_t queue = dispatch_queue_create(NULL, NULL);
 
  Fraction *frac = [[Fraction alloc] init];
 
 
 
  [frac setNumerator: 1];
 
  [frac setDenominator: 3];
 
 
 
  // print it
 
  dispatch_sync(queue, ^{
 
    printf( "The fraction is: " );
 
    [frac print];
 
    printf( "\n" );
 
  });
 
  dispatch_release(queue);
 
 
 
  return 0;
 
}
 
 
 
EOF
 
 
 
cat > Fraction.h << EOF
 
 
 
#import <Foundation/NSObject.h>
 
 
 
@interface Fraction: NSObject {
 
  int numerator;
 
  int denominator;
 
}
 
 
 
-(void) print;
 
-(void) setNumerator: (int) n;
 
-(void) setDenominator: (int) d;
 
-(int) numerator;
 
-(int) denominator;
 
@end
 
 
 
EOF
 
 
 
 
 
cat > Fraction.m << EOF
 
#import "Fraction.h"
 
#import <stdio.h>
 
 
 
@implementation Fraction
 
-(void) print {
 
  printf( "%i/%i", numerator, denominator );
 
}
 
 
 
-(void) setNumerator: (int) n {
 
  numerator = n;
 
}
 
 
 
-(void) setDenominator: (int) d {
 
  denominator = d;
 
}
 
 
 
-(int) denominator {
 
  return denominator;
 
}
 
 
 
-(int) numerator {
 
  return numerator;
 
}
 
@end
 
 
 
EOF
 
</pre>
 

Latest revision as of 21:05, 17 April 2022

Usually it is a good a idea to just use the package manager of your distribution to get a stable and well integrated GNUstep environment:

sudo apt-get install gnustep gnustep-devel

If you want to develop new apps and try the newest features consider the approach described below.

Compiling Everything from Scratch

The following repo contains scripts that compile and install everything needed for GNUstep Objective-C 2.0. The script uses clang and libobjc2 for all the awesome new features like ARC, blocks/Grand Central Dispatch, etc.

For example, to build GNUstep under Ubuntu 19.04, do:

git clone https://github.com/plaurent/gnustep-build
cd gnustep-build/ubuntu-19.04-clang-8.0-runtime-2.0/
./GNUstep-buildon-ubuntu1904.sh

The demo.sh and demo-gui.sh scripts show example code and compilation examples (using command line as well as the recommended GNUmakefile approach.)

Reference manuals for GNUStep, including available APIs, etc, are available at http://www.gnustep.org/developers/documentation.html

General Note: When compiling your own code, it is generally good to tell clang both the family and version of the runtime: -fobjc-runtime=gnustep-2.0 (The current version number can be had by looking at the latest ANNOUNCE filename in https://github.com/gnustep/libobjc2 (e.g., ANNOUNCE.1.8.1))