We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As it says. Proposed solution is to switch to relpath.
The text was updated successfully, but these errors were encountered:
You mean #23 ? Give some details.
Sorry, something went wrong.
pake is trying to make a build directory for an object in the following way:
buildDir/TargetName/baseDirOfAbsolutePathToSourceFile.
And on windows it goes like: C:...._build\Target\C:...\Source.o which is not valid path on windows.
I made a workaround by adding: in_filename = os.path.relpath(in_filename) in __fetch_includes function
and by adding: os.path.relpath(source_filename) in object_filename function.
But this solution still does not solve a problem when sources files are in different directory tree than pake project.
No branches or pull requests
As it says. Proposed solution is to switch to relpath.
The text was updated successfully, but these errors were encountered: