After successfully running Disko on QEMU, I'm trying to get Disko to work on my real hardware (MINI2440).
QEMU allows to run "general" ARM code. The real hardware only allows armv4t.
That's why I need to set CXXFLAGS to
CXXFLAGS="-march=armv4t -mtune=arm920t -I..."
where -I... stands for all my include paths.
Unfortunately scons doesn't work with the -march and -mtune flags. Without these flags and exactly the same setup, scons works perfect.
Here's the output of scons when trying to build disko with -march and -mtune flags:
...
scons: done reading SConscript files.
scons: Building targets ...
scons: done building targets.
That's all. Nothing is built!
I was looking in the SConstruct and the SConsript file but didn't find out why these flags are irritating scons so much.
Imho scons should pass the -march and -mtune flags to the compiler. So is this a bug in SConstruct?
Any help would be greatly appreciated.
Regards
Nahsah
Btw: Please correct the Makefiles in disko-benchmarks.git and replace g++ by $(CXX) as already reported in disko-tutorials.git. Thanks
