-
-
Notifications
You must be signed in to change notification settings - Fork 32k
iOS clang
aliases crash with "invalid directory name" error if called with arguments having spaces
#127434
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
Comments
Original issue: beeware/Python-Apple-support#241 (review) |
@FeodorFitsner Were you planning to submit the PR you submitted against Python-Apple-support to CPython? |
Yes, I'm going to make a PR. |
freakboy3742
pushed a commit
that referenced
this issue
Dec 5, 2024
…with spaces (#127575) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces.
freakboy3742
pushed a commit
to freakboy3742/cpython
that referenced
this issue
Dec 5, 2024
…ow arguments with spaces (pythonGH-127575) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces. (cherry picked from commit 6cf7794) Co-authored-by: Feodor Fitsner <[email protected]>
freakboy3742
added a commit
that referenced
this issue
Dec 5, 2024
…uments with spaces (GH-127575) (#127624) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces. (cherry picked from commit 6cf7794) Co-authored-by: Feodor Fitsner <[email protected]>
freakboy3742
added a commit
to freakboy3742/cpython
that referenced
this issue
Dec 13, 2024
…w arguments with spaces (pythonGH-127575) (python#127624) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces. (cherry picked from commit 6cf7794) Co-authored-by: Feodor Fitsner <[email protected]>
freakboy3742
added a commit
to freakboy3742/cpython
that referenced
this issue
Dec 13, 2024
…ow arguments with spaces (pythonGH-127575) (python#127624) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces. (cherry picked from commit 6cf7794) Co-authored-by: Feodor Fitsner <[email protected]>
freakboy3742
added a commit
to freakboy3742/cpython
that referenced
this issue
Dec 13, 2024
…ow arguments with spaces (pythonGH-127575) (python#127624) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces. (cherry picked from commit 6cf7794) Co-authored-by: Feodor Fitsner <[email protected]>
freakboy3742
added a commit
to freakboy3742/cpython
that referenced
this issue
Dec 13, 2024
…ow arguments with spaces (pythonGH-127575) (python#127624) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces. (cherry picked from commit 6cf7794) Co-authored-by: Feodor Fitsner <[email protected]>
freakboy3742
pushed a commit
to freakboy3742/cpython
that referenced
this issue
Dec 13, 2024
…ments with spaces (python#127575) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces.
freakboy3742
added a commit
to freakboy3742/cpython
that referenced
this issue
Dec 13, 2024
…ow arguments with spaces (pythonGH-127575) (python#127624) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces. (cherry picked from commit 6cf7794) Co-authored-by: Feodor Fitsner <[email protected]>
srinivasreddy
pushed a commit
to srinivasreddy/cpython
that referenced
this issue
Jan 8, 2025
…ments with spaces (python#127575) Added shell escaping to ensure iOS compiler shims can accept arguments with spaces.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report
Bug description:
While doing cross-compilation of Python packages for iOS calling
arm64-apple-ios-clang
script (and other aliases as well) fails if arguments contain spaces, for example:gives
clang: invalid directory name: '1.2.2"'
error.To fix that
$@
inside script should be wrapped with quotes:"$@"
.I'm going to make PR.
CPython versions tested on:
3.12
Operating systems tested on:
macOS
Linked PRs
xcrun --sdk
clang/ar scripts to allow arguments with spaces #127575xcrun --sdk
clang/ar scripts to allow arguments with spaces (GH-127575) #127624The text was updated successfully, but these errors were encountered: