-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Question) ReactOS support? #7
Comments
AFAIK, ReactOS maintains compatibility with Windows XP (upd: NT 5.2 aka Windows Server 2003 aka XP 64) , so you can write and run windows drivers under both systems. Moreover, kernel mode API are stable since Windows NT, so it wouldn't be a problem if you doesn't use undocumented objects or newer functions. As for GCC — dunno. I am not familar with it, but it seems windows drivers are supported by GNU LD too. So, you can compile Rusty code as object file (by rustc) or static library (by cargo or rustc) and link it as driver module. Also you need to write a target specification, if you do not want to pass all driver-specific options to the toolchain every time. |
Thank you very much for the information. On Fri, Apr 29, 2016 at 12:44 AM, pravic [email protected] wrote:
Dr. Vasileios Anagnostopoulos (MSc,PhD) |
Is ReactOS with gcc supported?
The text was updated successfully, but these errors were encountered: