Author Topic: Qtopia With Zaurus-x-gcc  (Read 8905 times)

d.maddock1

  • Newbie
  • *
  • Posts: 40
    • View Profile
Qtopia With Zaurus-x-gcc
« on: December 22, 2005, 11:43:56 am »
I've been trying to get the Zaurus-X-gcc cross-compiler to work with the Qtopia libs.  Has anyone successfully done this?

Zaurus-X-gcc was put together using these instructions:
http://www.lucid-cake.net/osx_qpe/index_en.html

But, this doesn't seem to be helping me.  I'd like to avoid the last resort of removing Zaurus-X-gcc and walking through the myriad of steps in the above link exactly as he does.  In particular, what <arc-dir>, <work-dir>, and <src-dir> were used to set up Zaurus-X-gcc?

Thanks.

Dave.

dhns

  • Hero Member
  • *****
  • Posts: 699
    • View Profile
    • http://www.goldelico.com
Qtopia With Zaurus-x-gcc
« Reply #1 on: December 23, 2005, 04:50:32 pm »
Quote
In particular, what <arc-dir>, <work-dir>, and <src-dir> were used to set up Zaurus-X-gcc?
Hi,
what are the issues you find?

Here is the path for Zaurus-X-gcc:

<work-dir> = /Developer/Zaurus-X-gcc

with that it calls ./cross.sh --srcdir "$srcdir" --workdir "$workdir"

That one in turn does a

./configure --target=arm-linux --prefix=$absworkdir/opt/Embedix/tools

or

./configure --target=arm-linux --prefix=$absworkdir/opt/Embedix/tools --with-headers=$absworkdir/opt/Embedix/tools/arm-linux/include --with-libs=$absworkdir/opt/Embedix/tools/arm-linux/lib --enable-threads=posix

<arc-dir> is not used in generating the compiler. And <src-dir> is something local while generating the compiler.

I have never compiled any Qt program, so I did not look at the libraries...

One very important thing to remember: gcc does not like if there are space characters in the file path (e.g. $workdir).

Usually I put something like the following in my Makefiles (optimized for Objective-C)
Code: [Select]
TOOLCHAIN := /Developer/Zaurus-X-gcc/opt/Embedix/tools/arm-linux
SDK := /Developer/Zaurus-X-gcc/SDKs/mySTEP.sdk
MYSTEP := $(SDK)/usr/mySTEP
CC := $(TOOLCHAIN)/bin/gcc
LS := $(TOOLCHAIN)/bin/ld
AS := $(TOOLCHAIN)/bin/as
NM := $(TOOLCHAIN)/bin/nm
STRIP := $(TOOLCHAIN)/bin/strip

# header search paths
INCLUDES := \
-I$(SDK)/usr/ffcall/include \
-I$(SDK)/usr/X11R6/include \
-I$(SDK)/usr/mySTEP/include \
-I$(SDK)/usr/graphics/include \
-I$(SDK)/usr/sqlite/include

# standard libraries (incl. search path)
LIBS := $(LIBS) \
-L$(SDK)/usr/mySTEP/lib -lFoundation -lGdo \
-L$(SDK)/usr/ffcall/lib -lavcall \
-lm -ldl -lpthread \
-lobjc

Hope this helps.

-- hns
SL5500G, C860, C3100, WLAN, RTM8000, Powerbook G4, and others...
http://www.handheld-linux.com
http://www.quantum-step.com

d.maddock1

  • Newbie
  • *
  • Posts: 40
    • View Profile
Qtopia With Zaurus-x-gcc
« Reply #2 on: December 23, 2005, 11:59:39 pm »
Thanks, I've got it working.