Update TODO.win32

pull/22966/head
Bert Belder 2010-11-26 04:22:22 +01:00
parent 4eea3e45bd
commit e047ec340d
1 changed files with 11 additions and 1 deletions

View File

@ -15,7 +15,12 @@
that relays everything to an internal socket?
Also verify writeError and isStdoutBlocking correctness.
- Think about `make install`
- Think about exposing the platform through the process object
It sucks but it may be necessary to know which platfom you're running on, e.g.
you can't do spawn('grep') on windows (unless there's msys).
Something like process.os or process.platform?
- Skip/fix tests that can never pass on windows
- Find a solution for fs.symlink / fs.lstat / fs.chown
Windows has different symlink types: file symlinks (vista+), directory symlinks (vista+), junction points (xp+)
@ -29,6 +34,8 @@
- Check error number mappings.
Winsock errnos are different.
- Think about `make install`
- Extensions
Should be DLLs on windows.
@ -53,4 +60,7 @@
- See what libev/libeio changes can be pushed upstream
- 64-bit build
Should be possible with MinGW-w64, it's pretty good.
- ... much more probably