Soroush Rabiei
Soroush Rabiei

Reputation: 10868

Compile Unix code for WindowsCE

I'm working on a library which was intended to use on Linux-only machines. So I choosed GNU autotools for build system and did everything with only Unix-like OSs in mind. After a while, we needed to port the library to Windows. Thanks to CygWin everything compiles and works fine. Now we need to provide the library for WindowsCE. Is this possible? I think CygWin does not support WinCE. Do I need to re-write the library for WinCE?

Upvotes: 1

Views: 333

Answers (1)

Yaakov
Yaakov

Reputation: 1703

Cygwin does not support WinCE, so you will need to port your code to WinCE APIs.

Upvotes: 1

Related Questions