Difference between revisions of "GNUstep under Ubuntu Linux"

From GNUstepWiki
Jump to navigation Jump to search
(20 intermediate revisions by the same 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.
+
Objective-C under Ubuntu Linux
  
== Compiling manually ==
+
== Compiling Everything from Scratch (Ubuntu 14.04) ==
  
* Uses clang and libobjc2 for all the new features like ARC, Blocks, etc.
+
The following script installs everything from scratch.  It uses clang and libobjc2 for all the new Objective-C 2 features like ARC, Blocks, etc. '''Reference manuals''' for GNUStep, including available APIs, etc, are available at http://www.gnustep.org/developers/documentation.html
* 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]].
+
These instructions were tested on a fresh installation of Ubuntu 14.04 on May 31, 2015.
  
 +
Note: If you are using Ubuntu 12.04, your version of CMake and/or g++ may be too old to handle the newer versions of LLVM.  See the bottom of this wiki page for instructions on how to get a newer version of CMake working on 12.04.
 
<pre>
 
<pre>
sudo apt-get install aptitude
+
#!/bin/bash
# Dependencies
+
 
sudo aptitude -y install build-essential git subversion ninja cmake
+
sudo apt-get update
# Dependencies for GNUStep Base
+
sudo apt-get -y install build-essential git subversion ninja cmake libffi-dev libxml2-dev \
sudo aptitude -y install libffi-dev libxml2-dev libgnutls-dev libicu-dev  
+
libgnutls-dev libicu-dev libblocksruntime-dev libkqueue-dev libpthread-workqueue-dev autoconf libtool \
# Dependencies for libdispatch
+
libjpeg-dev libtiff-dev libffi-dev libcairo-dev libx11-dev:i386 libxt-dev libXft-dev
sudo aptitude -y install libblocksruntime-dev libkqueue-dev libpthread-workqueue-dev autoconf libtool
 
  
 
cd ~
 
cd ~
Line 29: Line 25:
  
 
cd ~/llvm
 
cd ~/llvm
 +
rm -rf build
 
mkdir build
 
mkdir build
 
cd build
 
cd build
Line 37: Line 34:
 
echo "export CC=clang"  >> ~/.bashrc
 
echo "export CC=clang"  >> ~/.bashrc
 
echo "export CXX=clang++" >> ~/.bashrc
 
echo "export CXX=clang++" >> ~/.bashrc
source ~/.bashrc
+
export PATH=$PATH:~/llvm/build/bin
 +
export CC=clang
 +
export CXX=clang++
 +
 
 +
. ~/.bashrc
 
clang -v
 
clang -v
 
clang++ -v
 
clang++ -v
  
 
cd ~/libobjc2
 
cd ~/libobjc2
 +
rm -rf build
 
mkdir build
 
mkdir build
 
cd build
 
cd build
Line 52: Line 54:
 
make && sudo -E make install
 
make && sudo -E make install
 
echo ". /usr/GNUstep/System/Library/Makefiles/GNUstep.sh" >> ~/.bashrc
 
echo ". /usr/GNUstep/System/Library/Makefiles/GNUstep.sh" >> ~/.bashrc
source ~/.bashrc
+
 
 +
. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh
  
 
sudo /sbin/ldconfig
 
sudo /sbin/ldconfig
Line 62: Line 65:
  
 
cd ~/libdispatch
 
cd ~/libdispatch
sh autogen.sh
+
rm -rf libdispatch-build
./configure CFLAGS="-I/usr/include/kqueue" LDFLAGS="-lkqueue -lpthread_workqueue -pthread -lm"
+
mkdir libdispatch-build && cd libdispatch-build
 +
../configure
 +
make
 +
sudo make install
 +
sudo ldconfig
 +
 
 +
cd ~/core/gui
 +
./configure
 
make -j8
 
make -j8
 
sudo -E make install
 
sudo -E make install
sudo ldconfig
 
  
# ----------------------------------------------------------------------------------------
+
cd ~/core/back
# TEST COMPILING SOME CODE FROM THE INTERNET
+
./configure
# ----------------------------------------------------------------------------------------
+
make -j8
 +
sudo -E make install
  
You can compile the following code with:
+
echo "Install is done. Open a new terminal or type source ~/.bashrc"
 
+
</pre>
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
+
=== Test Code ===
  
 +
The following is some Objective-C source code from the internet. 
 +
It demonstrates blocks, Grand Central Dispatch, and the use of GNUStep GUI.
  
 +
<pre>
  
 
cat > blocktest.m << EOF
 
cat > blocktest.m << EOF
Line 99: Line 111:
  
 
int main( int argc, const char *argv[] ) {
 
int main( int argc, const char *argv[] ) {
   dispatch_queue_t queue = dispatch_queue_create(NULL, NULL);  
+
   dispatch_queue_t queue = dispatch_queue_create(NULL, NULL);
 
   Fraction *frac = [[Fraction alloc] init];
 
   Fraction *frac = [[Fraction alloc] init];
  
Line 164: Line 176:
  
 
EOF
 
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
 
  
  
Line 195: Line 184:
 
int main()
 
int main()
 
{
 
{
NSApplication *app;  // Without these 2 lines, seg fault may occur
+
  NSApplication *app;  // Without these 2 lines, seg fault may occur
app = [NSApplication sharedApplication];
+
  app = [NSApplication sharedApplication];
  
NSAlert * alert = [[NSAlert alloc] init];
+
  NSAlert * alert = [[NSAlert alloc] init];
[alert setMessageText:@"Hello alert"];
+
  [alert setMessageText:@"Hello alert"];
[alert addButtonWithTitle:@"All done"];
+
  [alert addButtonWithTitle:@"All done"];
[alert runModal];
+
  int result = [alert runModal];
 +
  if (result == NSAlertFirstButtonReturn) {
 +
    NSLog(@"First button pressed");
 +
  }
 
}
 
}
 
EOF
 
EOF
  
 +
# ======================================================================
 +
# COMPILE USING THE FOLLOWING COMMAND LINES, OR CREATE A MAKEFILE
 +
# ======================================================================
 +
 +
# Using COMMAND LINE
 +
 +
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobjc-runtime=gnustep -fblocks -fobjc-arc -lobjc  blocktest.m
  
</pre>
+
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs` -fobjc-runtime=gnustep -fblocks -lobjc -ldispatch -lgnustep-base  Fraction.m helloGCD_objc.m
  
 +
clang `gnustep-config --objc-flags` `gnustep-config --objc-libs`  -fobjc-runtime=gnustep -fblocks -lobjc -fobjc-arc -ldispatch -lgnustep-base -lgnustep-gui  guitest.m
  
* General Note: When compiling, it is generally good to tell clang both the family and version of the runtime: -fobjc-runtime=gnustep-1.7
+
# Using MAKEFILE
(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))
 
  
 +
cat > GNUmakefile << EOF
 +
include \$(GNUSTEP_MAKEFILES)/common.make
  
<b>Ubuntu 12.04 Help</b>
+
APP_NAME = GUITest
 +
GUITest_OBJC_FILES = guitest.m
  
In Ubuntu 12.04 Desktop, the installed version of CMake is 2.8.7 but you need 2.8.8 or later to compile LLVM.
+
include \$(GNUSTEP_MAKEFILES)/application.make
 +
EOF
  
 +
make
 +
openapp ./GUITest.app
  
<pre>
 
patryk@telperion:~/llvm/build$ cmake ..
 
CMake Error at CMakeLists.txt:3 (cmake_minimum_required):
 
  CMake 2.8.8 or higher is required.  You are running version 2.8.7
 
  
  
-- Configuring incomplete, errors occurred!
 
patryk@telperion:~/llvm/build$
 
 
</pre>
 
</pre>
  
The solution is to download and compile CMake yourself, using the existing CMake 2.8.7 and then replacing it.
+
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-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>
 +
 
 +
On Ubuntu 12.04, the default installed version of CMake is 2.8.7 but you need 2.8.8 or later to compile LLVM.  And the default installed version of GCC and G++ is 4.6 but you need 4.8 or later to compile LLVM.
 +
 
 +
For CMake, the solution is to download and compile CMake yourself.  Use the existing CMake 2.8.7 and then replace it:
  
# Download the latest CMake version from the CMake web site (http://www.cmake.org/cmake/resources/software.html), and uncompress iin a folder.
+
# Download the latest CMake version from the CMake web site (http://www.cmake.org/cmake/resources/software.html), and uncompress it in a folder.
 
# Create a _build directory in the CMake sources folder.  
 
# Create a _build directory in the CMake sources folder.  
 
# From the _build directory, run the following commands to build and install CMake from sources:
 
# From the _build directory, run the following commands to build and install CMake from sources:
Line 242: Line 248:
 
</pre>
 
</pre>
  
You probably will also need to upgrade to a newer GCC:
+
To get GCC and G++ 4.8, do the following:
  
 
<pre>
 
<pre>
Line 252: Line 258:
 
</pre>
 
</pre>
  
 
+
You should be good to go.
 
 
If running make -j8 in llvm failed with a "syntax error in VERSION script" error,
 
you may be 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>
 

Revision as of 23:21, 31 May 2015

Objective-C under Ubuntu Linux

Compiling Everything from Scratch (Ubuntu 14.04)

The following script installs everything from scratch. It uses clang and libobjc2 for all the new Objective-C 2 features like ARC, Blocks, etc. Reference manuals for GNUStep, including available APIs, etc, are available at http://www.gnustep.org/developers/documentation.html

These instructions were tested on a fresh installation of Ubuntu 14.04 on May 31, 2015.

Note: If you are using Ubuntu 12.04, your version of CMake and/or g++ may be too old to handle the newer versions of LLVM. See the bottom of this wiki page for instructions on how to get a newer version of CMake working on 12.04.

#!/bin/bash

sudo apt-get update
sudo apt-get -y install build-essential git subversion ninja cmake libffi-dev libxml2-dev \
libgnutls-dev libicu-dev libblocksruntime-dev libkqueue-dev libpthread-workqueue-dev autoconf libtool \
libjpeg-dev libtiff-dev libffi-dev libcairo-dev libx11-dev:i386 libxt-dev libXft-dev

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
rm -rf build
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
export PATH=$PATH:~/llvm/build/bin
export CC=clang
export CXX=clang++

. ~/.bashrc
clang -v
clang++ -v

cd ~/libobjc2
rm -rf build
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

. /usr/GNUstep/System/Library/Makefiles/GNUstep.sh

sudo /sbin/ldconfig

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

cd ~/libdispatch
rm -rf libdispatch-build
mkdir libdispatch-build && cd libdispatch-build
../configure
make
sudo make install
sudo ldconfig

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

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

echo "Install is done. Open a new terminal or type source ~/.bashrc"

Test Code

The following is some Objective-C source code from the internet. It demonstrates blocks, Grand Central Dispatch, and the use of GNUStep GUI.


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



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"];
  int result = [alert runModal];
  if (result == NSAlertFirstButtonReturn) {
    NSLog(@"First button pressed");
  }
}
EOF

# ======================================================================
# COMPILE USING THE FOLLOWING COMMAND LINES, OR CREATE A MAKEFILE
# ======================================================================

# Using COMMAND LINE

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

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

# Using MAKEFILE

cat > GNUmakefile << EOF
include \$(GNUSTEP_MAKEFILES)/common.make

APP_NAME = GUITest
GUITest_OBJC_FILES = guitest.m

include \$(GNUSTEP_MAKEFILES)/application.make
EOF

make
openapp ./GUITest.app



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-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

On Ubuntu 12.04, the default installed version of CMake is 2.8.7 but you need 2.8.8 or later to compile LLVM. And the default installed version of GCC and G++ is 4.6 but you need 4.8 or later to compile LLVM.

For CMake, the solution is to download and compile CMake yourself. Use the existing CMake 2.8.7 and then replace it:

  1. Download the latest CMake version from the CMake web site (http://www.cmake.org/cmake/resources/software.html), and uncompress it in a folder.
  2. Create a _build directory in the CMake sources folder.
  3. From the _build directory, run the following commands to build and install CMake from sources:
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
make
cpack -G DEB
sudo apt-get remove cmake cmake-data
sudo dpkg -i cmake*.deb

To get GCC and G++ 4.8, do the following:

sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.8 g++-4.8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 50
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50

You should be good to go.