That's because you are on Windows and use wrong directory separator. On Windows, it is \??while on Unix and unix-like systems it's /
A trick: always use \ even while not on Windows and compile with -Z which is for compatibility and changes \ to / automatically on non-Windows platforms.
A trick: always use \ even while not on Windows and compile with -Z which is for compatibility and changes \ to / automatically on non-Windows platforms.
@dakyskye everywhere