Difference between revisions of "GNUstep under Ubuntu Linux"

From GNUstepWiki
Jump to navigation Jump to search
(Fixed missing quote)
(Mention the GNUstep weekly PPA. Right now this PPA is empty, but will be populated the next few days.)
(27 intermediate revisions by one other user not shown)
Line 1: Line 1:
 +
The most simple way to get an up-to-date installation of GNUstep on Debian or Ubuntu is to add the [https://launchpad.net/~gnustep-dev/+archive/weekly GNUstep weekly PPA] to your distribution sources, provided by the GNUstep Developers team on Launchpad. On how to do this in detail, see the PPA page.
 +
 +
== Compiling manually ==
 +
 +
* Uses clang and libobjc2 for all the new features like ARC, Blocks, etc.
 +
* Works with a fresh install and likely with a more completed installation.
 +
* Works on Ubuntu 12.10 Server.
 +
* Works on Ubuntu 13.10 Desktop.
 +
* If you're trying Ubuntu 12.04 Desktop, see bottom of the page for help.
 +
 +
After this, you can try to install EtoileOS: see [[EtoileOS under Ubuntu Linux]].
 +
 
<pre>
 
<pre>
# Objective C 2.0 installation
+
sudo apt-get install aptitude
# On fresh install of Ubuntu 12.10 Server
+
# Dependencies
# Patryk Laurent (http://pakl.net/)
+
sudo aptitude -y install build-essential git subversion ninja cmake
# Dec 27, 2012
+
# Dependencies for GNUStep Base
 
+
sudo aptitude -y install libffi-dev libxml2-dev libgnutls-dev libicu-dev
sudo aptitude install build-essential git subversion ninja cmake
+
# Dependencies for libdispatch
 +
sudo aptitude -y 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
 
svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm
 
cd llvm/tools
 
cd llvm/tools
 
svn co http://llvm.org/svn/llvm-project/cfe/trunk clang
 
svn co http://llvm.org/svn/llvm-project/cfe/trunk clang
cd .. # Back to llvm directory
 
./configure --enable-optimized
 
make -j4  # Go off to prepare cup of coffee here.
 
  
export PATH=$PATH:~/llvm/Release+Asserts/bin # Add to .bashrc
+
cd ~/llvm
export CC=clang  # Add to .bashrc
+
mkdir build
 +
cd build
 +
cmake ..
 +
make -j8  # 8=your number of build CPUs
 +
 
 +
echo "export PATH=\$PATH:~/llvm/build/bin" >> ~/.bashrc
 +
echo "export CC=clang" >> ~/.bashrc
 +
echo "export CXX=clang++" >> ~/.bashrc
 +
source ~/.bashrc
 
clang -v
 
clang -v
 +
clang++ -v
  
svn co http://svn.gna.org/svn/gnustep/modules/core
+
cd ~/libobjc2
svn co http://svn.gna.org/svn/gnustep/libs/libobjc2/trunk libobjc2
 
cd core/make
 
./configure --enable-debug-by-default --with-layout=gnustep
 
make && sudo -E make install
 
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh # Add to .bashrc
 
 
 
sudo aptitude install gobjc  # Otherwise we get "cc1obj not found"
 
cd ../../libobjc2
 
 
mkdir build
 
mkdir build
 
cd build
 
cd build
 
cmake ..
 
cmake ..
make
+
make -j8
 +
sudo -E make install
 +
 
 +
cd ~/core/make
 +
./configure --enable-debug-by-default --with-layout=gnustep --enable-objc-nonfragile-abi
 +
make && sudo -E make install
 +
echo ". /usr/GNUstep/System/Library/Makefiles/GNUstep.sh" >> ~/.bashrc
 +
source ~/.bashrc
 +
 
 +
sudo /sbin/ldconfig
 +
 
 +
cd ~/core/base/
 +
./configure
 +
make -j8
 +
sudo -E make install
 +
 
 +
cd ~/libdispatch
 +
sh autogen.sh
 +
./configure CFLAGS="-I/usr/include/kqueue" LDFLAGS="-lkqueue -lpthread_workqueue -pthread -lm"
 +
make -j8
 
sudo -E make install
 
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` -fobjc-runtime=gnustep -fblocks -fobjc-arc -lobjc  blocktest.m
 +
 +
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobjc-runtime=gnustep -fblocks -lobjc -ldispatch -lgnustep-base  Fraction.m helloGCD_objc.m
 +
 +
  
 
cat > blocktest.m << EOF
 
cat > blocktest.m << EOF
Line 45: Line 92:
 
EOF
 
EOF
  
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobj-arc -fobjc-nonfragile-abi -fblocks  -lobjc blocktest.m  
+
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
 +
 
 +
 
 +
# ------------------------------------------------------
 +
# ADDITIONAL OPTIONAL STEPS FOR INSTALLING GUI AND BACK
 +
# (i.e., if you're running Ubuntu Desktop)
 +
# ------------------------------------------------------
 +
 
 +
sudo aptitude install -y libjpeg-dev libtiff-dev
 +
sudo aptitude install -y libcairo-dev libx11-dev:i386 libxt-dev
 +
 
 +
cd ~/core/gui
 +
./configure
 +
make -j8
 +
sudo -E make install
 +
 
 +
cd ~/core/back
 +
./configure
 +
make -j8
 +
sudo -E make install
 +
 
 +
You can compile the following code with:
 +
 
 +
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobjc-runtime=gnustep -fblocks -lobjc -fobjc-arc -ldispatch -lgnustep-base -lgnustep-gui guitest.m
 +
 
 +
 
 +
 
 +
cat > guitest.m << EOF
 +
#import <AppKit/AppKit.h>
 +
 
 +
int main()
 +
{
 +
NSApplication *app;  // Without these 2 lines, seg fault may occur
 +
app = [NSApplication sharedApplication];
 +
 
 +
NSAlert * alert = [[NSAlert alloc] init];
 +
[alert setMessageText:@"Hello alert"];
 +
[alert addButtonWithTitle:@"All done"];
 +
[alert runModal];
 +
}
 +
EOF
 +
 
 +
 
 +
</pre>
 +
 
 +
 
 +
* General Note: When compiling, it is generally good to tell clang both the family and version of the runtime: -fobjc-runtime=gnustep-1.7
 +
(The current version number can be had by looking at the latest ANNOUNCE filename in http://svn.gna.org/svn/gnustep/libs/libobjc2/trunk/ (e.g., ANNOUNCE.1.7))
 +
 
 +
 
 +
<b>Ubuntu 12.04 Help</b>
 +
 
 +
In Ubuntu 12.04 Desktop, I found that running make -j8 in llvm failed with a "syntax error in VERSION script" error. 
 +
 
 +
I was able to overcome it by doing the following steps <b>after getting the error</b>:
 +
 
 +
<pre>
 +
# After make -j8 returned a syntax error in VERSION script error
 +
cd ~/llvm/build
 +
make clean
 +
cd ~/llvm/build/tools/lto
 +
make -j8
 +
cd ~/llvm/build
 +
make -j8
 
</pre>
 
</pre>

Revision as of 14:32, 9 January 2014

The most simple way to get an up-to-date installation of GNUstep on Debian or Ubuntu is to add the GNUstep weekly PPA to your distribution sources, provided by the GNUstep Developers team on Launchpad. On how to do this in detail, see the PPA page.

Compiling manually

  • Uses clang and libobjc2 for all the new features like ARC, Blocks, etc.
  • Works with a fresh install and likely with a more completed installation.
  • Works on Ubuntu 12.10 Server.
  • Works on Ubuntu 13.10 Desktop.
  • If you're trying Ubuntu 12.04 Desktop, see bottom of the page for help.

After this, you can try to install EtoileOS: see EtoileOS under Ubuntu Linux.

sudo apt-get install aptitude
# Dependencies
sudo aptitude -y install build-essential git subversion ninja cmake
# Dependencies for GNUStep Base
sudo aptitude -y install libffi-dev libxml2-dev libgnutls-dev libicu-dev 
# Dependencies for libdispatch
sudo aptitude -y 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
mkdir build
cd build
cmake ..
make -j8   # 8=your number of build CPUs

echo "export PATH=\$PATH:~/llvm/build/bin" >> ~/.bashrc
echo "export CC=clang"  >> ~/.bashrc
echo "export CXX=clang++" >> ~/.bashrc
source ~/.bashrc
clang -v
clang++ -v

cd ~/libobjc2
mkdir build
cd build
cmake ..
make -j8
sudo -E make install

cd ~/core/make
./configure --enable-debug-by-default --with-layout=gnustep --enable-objc-nonfragile-abi
make && sudo -E make install
echo ". /usr/GNUstep/System/Library/Makefiles/GNUstep.sh" >> ~/.bashrc
source ~/.bashrc

sudo /sbin/ldconfig

cd ~/core/base/
./configure
make -j8
sudo -E make install

cd ~/libdispatch
sh autogen.sh
./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` -fobjc-runtime=gnustep -fblocks -fobjc-arc -lobjc  blocktest.m 

clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobjc-runtime=gnustep -fblocks -lobjc -ldispatch -lgnustep-base  Fraction.m helloGCD_objc.m



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


# ------------------------------------------------------
# ADDITIONAL OPTIONAL STEPS FOR INSTALLING GUI AND BACK
# (i.e., if you're running Ubuntu Desktop)
# ------------------------------------------------------

sudo aptitude install -y libjpeg-dev libtiff-dev
sudo aptitude install -y libcairo-dev libx11-dev:i386 libxt-dev

cd ~/core/gui
./configure
make -j8
sudo -E make install

cd ~/core/back
./configure
make -j8
sudo -E make install

You can compile the following code with:

clang `gnustep-config --objc-flags` `gnustep-config --objc-libs`  -fobjc-runtime=gnustep -fblocks -lobjc -fobjc-arc -ldispatch -lgnustep-base -lgnustep-gui  guitest.m



cat > guitest.m << EOF
#import <AppKit/AppKit.h>

int main()
{
NSApplication *app;  // Without these 2 lines, seg fault may occur
app = [NSApplication sharedApplication];

NSAlert * alert = [[NSAlert alloc] init];
[alert setMessageText:@"Hello alert"];
[alert addButtonWithTitle:@"All done"];
[alert runModal];
}
EOF



  • General Note: When compiling, it is generally good to tell clang both the family and version of the runtime: -fobjc-runtime=gnustep-1.7

(The current version number can be had by looking at the latest ANNOUNCE filename in http://svn.gna.org/svn/gnustep/libs/libobjc2/trunk/ (e.g., ANNOUNCE.1.7))


Ubuntu 12.04 Help

In Ubuntu 12.04 Desktop, I found that running make -j8 in llvm failed with a "syntax error in VERSION script" error.

I was able to overcome it by doing the following steps after getting the error:

# After make -j8 returned a syntax error in VERSION script error
cd ~/llvm/build
make clean
cd ~/llvm/build/tools/lto
make -j8
cd ~/llvm/build
make -j8