I tried to build platform\external\qemu on Windows, like this:
./android-rebuild.sh --sdl-config=/cygdrive/g/mydroid/prebuilt/windows/
sdl/bin/sdl-config
The build fails: android-configure.sh incorrectly detects that
byteswap.h is available. The detection does not use the -mno-cygwin
compiler flag, while real build uses it. I added the following:
# on windows, use -mno-cygwin
if [ "$OS" == "windows" ] ; then
CFLAGS="$CFLAGS -mno-cygwin"
fi
This enabled the emulator to build properly.
--
timo
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---