Closed naksyl closed 10 months ago
The latest prerelease binaries allow target names of the form c:/path
as a non-POSIX extension.
c:/path
targets should work out of the box.windows
pragma to enable support for c:/path
in POSIX mode. This also requires the use of the target_name
or posix_202x
pragma to allow slashes in target names.
.POSIX:
.PRAGMA: windows target_name
c:path
aren't allowed, but it's probably unwise to use them.Target names of the form c:path aren't allowed, but it's probably unwise to use them.
Totally agreed. Personally I do not know about this path style (and never used) before I discovered bysybox-w32
make
applet recognize absolute path as 2 items::
Example:
$ cat Makefile
$ echo pwd=$PWD; make; make z
mingw32-make
from w64devkit and 'posix'make
from msys (through the magic of path conversion i guess) handle thisMakefile
correctly:echo pwd=$PWD; c:/w64devkit/bin/mingw32-make.exe; c:/w64devkit/bin/mingw32-make.exe z