I have finally been able to work around the
"cc1: /cygdrive/d/work/daniel/work-gcc/tools/jz47-nopic/include: No medium found" error
by compiling while a CD is inserted into the D: drive,
But I still have the
CODE
Makefile:137: target `Loader.o' given more than once in the same rule.
This is most surprising as I am just compiling the hello world example without editing it...
Any clue?
That basically means it's found Loader.cpp twice.
If you're using the S2D framework thing, Loader.cpp is a code file that sets up the screen and things, so there is a different one for Windows and a different one for the Dingoo.
Quickly, if you move the one in the Hello World example to somewhere else temporarily, it'll compile for the Dingoo quite happily.. you can put it back in if you want to compile for Windows again.
Basically, just make sure your Loader.cpp file is away from the rest of the code in your own projects, and you'll be fine
