Blog | About

Towards GCC for HelenOS

24 Jan 2013

Tags: GCC, HelenOS, porting and zlib

Compiling GCC to run inside HelenOS is for quite some time on the ToDo list of HelenOS. I decided to give it a try and if you want to follow what I did so far, carry on reading.

GCC itself has several dependencies that have to be compiled first. This was already described during GSoC but unfortunately the project didn't make it through.

Currently, the only option for compiling all these libraries is to cross compile them outside of HelenOS. This looks like a simple job because most of GNU software has special flags (--host) for configure scripts that shall simplify cross-compiling. But studying the intrusive.sh from the binutils port reveals that it is not always that simple. However, for simple libraries this approach shall work.

Theoretically, it shall be sufficient to just call ./configure with proper --host argument and specify a few CFLAGS and we are done. Practically, there has to be done more than that.

I decided to first play with porting zlib compression library that has virtually no dependencies and its configure is pretty simple. After few attempts to correctly set the CFLAGS that always resulted in awful screams from the configuration script, I realized that I have to automate this work at least a bit.

Thus the script configure-for-helenos.sh was born. You can find it in my HelenOS scripts repository on GitHub. The script gets directory with HelenOS sources as a parameter and extracts from it all the necessary settings, such as path to the cross-compiler or flags for it and then calls the configure script. Thus, instead of manually specifying all the flags and paths into HelenOS source tree, you only specify path to HelenOS source root and the script does the rest.

So, let's try it on zlib sources. Let's unpack them and configure the library using the helper script. Assuming you placed the script into ~/bin/, the following command will do the trick - used options are described later.

~/bin/configure-for-helenos.sh \
    -d ~/helenos/mainline \
    --run-with-env \
    --link-with-cc \
    --ldflags-ignored \
    --verbose \
    -- \
        ./configure \
            --static

The meaning of individual arguments is following. The normal parameters specify the script to run and any arguments to it. Here we call the standard configuration script and we specify that we want only static library. The individual options are:

-d
Path to HelenOS sources. HelenOS has to be already configured and built.
--run-with-env
Execute the script (configure) through env, passing settings as environmental variables instead of parameters to configure. The difference is shown below.
--link-with-cc
The build process links the binary by calling compiler, not linker directly.
--ldflags-ignored
Moreover, (pretty standard) variable LDFLAGS is completely ignored and shall be merged into CFLAGS.
--verbose
Just be more verbose.

The difference between running with --run-with-env is following. Without this option, the configure is run as

./configure --static \
    CC=gcc CFLAGS="-whatever -flags -you -want"

while with this option, env is invoked first.

env CC=gcc CFLAGS="-whatever -flags -you -want" \
    ./configure --static

The configuration is pretty short and below is a sample output for mips32/msim:


Building static library libz.a version 1.2.7 with \
    /usr/local/cross/mips32/bin/mipsel-linux-gnu-gcc.
Checking for off64_t... Yes.
Checking for fseeko... Yes.
Checking for strerror... Yes.
Checking for unistd.h... Yes.
Checking for stdarg.h... Yes.
Checking whether to use vs[n]printf() \
    or s[n]printf()... using vs[n]printf().
Checking for vsnprintf() in stdio.h... Yes.
Checking for return value of vsnprintf()... Yes.
Checking for attribute(visibility) support... Yes.
./configure: line 719: ./ztest5950: \
    cannot execute binary file
Looking for a four-byte integer type... Not found.

The mentioned error only means that configure was trying to determine 4B integer type by launching a simple application and it did not succeed. Unsurprisingly, since the binary was compiled for MIPS-32 while the build was running on AMD-64. But it still works.

Then, just run make. It shall execute okay and produce libz.a static library and minigzip executable.

To try a live demo, copy the minigzip to uspace/dist/app and rebuild HelenOS. Then in terminal (in HelenOS) run

ls /
minigzip /textdemo
ls /

The second listing shall display textdemo.gz instead of textdemo. Cool, isn't it?

And that is all for now. Next time, I will describe building some of the real GCC dependencies. If you are impatient, you may try it by yourself - there is a short explanation in the README of the HelenOS scripts repository. Please, note that so far I do not have a working GCC for HelenOS and it is possible that this serie will end with a pessimistic scream such as it doesn't work and it won't work because abc until we xyz. Stay tuned ;-).

Comments

Watch comments through RSS

Add a comment

The e-mail will be used to get a Gravatar picture and will not be directly displayed.

Please, show me you are not a robot.

You can use basic HTML formatting (following tags are allowed: A, CODE, PRE, B, I, STRONG, P and BLOCKQUOTE). For replies, I recommend using the Quote button next to a post.