zevik
- 5
- 0
How do I use a Unix-originated makefile on Windows Vista? Is there any simple guidelines for migrating the makefile such that it works?
The discussion revolves around the challenges of using Unix-originated makefiles on Windows Vista, exploring potential solutions for migration and compatibility issues. The scope includes technical explanations and practical applications related to software development environments.
Participants express differing views on the feasibility of migrating makefiles directly, with some advocating for using Cygwin while others suggest alternative approaches. The discussion remains unresolved regarding the best method for migration.
Participants acknowledge potential limitations related to the availability of Unix tools on Windows and the need for a POSIX environment, but specific assumptions or dependencies are not fully explored.
Developers and users transitioning from Unix-based systems to Windows who are dealing with makefiles and seeking compatibility solutions.
TylerH said:Um... it depends... 1st thing I'd try would be Cygwin. That would probably be the only thing I'd try under Windows. Migrating... just no! Without a POSIX subsystem(like Cygwin/Interix), there just isn't a feasible way to do it.
The problem comes from the fact that Windows and *nix are totally different, and almost completely incompatible. The makefile is likely to depend on certain executable that come standard on *nix being on your system, but they won't be there.
Basically, if your going to use *nix tools, it's easiest to install a *nix. There are Linux distros for people who are used to Windows. I think "Mint" is a special made distro for Win-converts. Anyway, point is, you CAN have both.