1

I have compiled FastBoot on Linux platform. But I am stucked while compile it on windows.I am using WinDDK for compilation of FastBoot on windows.In WinDDK, It is giving errors like missing "unistd.h","sys/time.h","zipfile/zipfile.h".

Are there any replacement files for above said in windows?.Please suggest if any suitable method to port the code from linux to Windows environment.

Mike Laren
  • 8,028
  • 17
  • 51
  • 70
ManishB
  • 171
  • 2
  • 2
  • 7
  • Could you please post the Linux binary for fastboot? It used to be online here: http://android-dls.com/wiki/index.php?title=Fastboot#Fastboot_Binary , but no longer. – appas Sep 27 '11 at 23:39

1 Answers1

0

Header file unistd.h is available only on POSIX systems. Fastboot on Windows can be compiled using Cygwin.

zoli2k
  • 3,388
  • 4
  • 26
  • 36
  • May I know compilation steps for Fastboot in cygwin?. As I have code and make file available with me. your help really matters for me – ManishB Jul 14 '10 at 07:07