-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
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
Build fails due to spaces in directory paths #400
Comments
#401 gives my approach to solve the problem. Thanks. |
Thanks for reporting - generally building on Windows isn't something we support or test in CI, but it sounds like this is probably a cross-platform problem anyway. Building by invoking Do you have the output of an example build failure? If not we'll see if we can reproduce. |
Ahh I actually changed my setup.py since then .. and the issue was solved
actually so .. 😅
…On Tue, Sep 24, 2024, 12:26 AM Aaron Miller ***@***.***> wrote:
Thanks for reporting - generally building on Windows isn't something we
support or test in CI, but it sounds like this is probably a cross-platform
problem anyway. Building by invoking setup.py directly is also deprecated
by setuptools
<https://packaging.python.org/en/latest/discussions/setup-py-deprecated/>
and not supported, but that's also probably not the issue.
Do you have the output of an example build failure? If not we'll see if we
can reproduce.
—
Reply to this email directly, view it on GitHub
<#400 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A4ABMTHTSID5CMDN2N3G6CDZYBP5NAVCNFSM6AAAAABOSJ34JCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGNRZGEYTIMRYGM>
.
You are receiving this because you modified the open/close state.Message
ID: ***@***.***>
|
Describe the bug
When building the project in a directory path that contains spaces, the build process fails due to improper handling of spaces in directory paths. The path is interpreted incorrectly, causing the build to stop with errors related to path formatting.
For example, a directory like
C:/Users/Username/My Projects/Symforce
causes build failures, as spaces are not properly escaped or quoted.To Reproduce
Steps to reproduce the behavior:
C:/Users/Username/My Projects/Symforce
.python setup.py build # or make px4_sitl_default none_iris
Expected behavior
The build process should correctly handle directory paths with spaces by escaping or quoting the paths properly, allowing the build to proceed without errors.
Screenshots
N/A (Optional if you want to include terminal screenshots showing the error.)
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: