You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CXXFLAGS typically have spaces in them, so they can't be passed using the existing CMAKE_ARGS mechanism.
One possible solution is to re-define this variable to pass the Python list string, instead of a space-separated values.
The text was updated successfully, but these errors were encountered:
yurivict
changed the title
The CMAKE_ARGS environment argument doesn't allow to pass values with spaces
The CMAKE_ARGS environment variable doesn't allow to pass values with spaces
May 3, 2024
Another solution would be to use shlex.split instead of split in setup.py (ref), but it seems to remove the double quote around the CXXFLAGS value, so I am not sure how this would affect subprocess.run.
here
CXXFLAGS typically have spaces in them, so they can't be passed using the existing CMAKE_ARGS mechanism.
One possible solution is to re-define this variable to pass the Python list string, instead of a space-separated values.
The text was updated successfully, but these errors were encountered: