-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
[wasm] Fix AOT for projects with space in path/name #92880
Conversation
Tagging subscribers to 'arch-wasm': @lewing Issue Detailsnull
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just don't try %20 in the path
Co-authored-by: kasperk81 <83082615+kasperk81@users.noreply.github.com>
@@ -409,7 +409,7 @@ | |||
Condition="'$(EmccInitialHeapSize)' == ''" | |||
DependsOnTargets="_CheckEmccIsExpectedVersion"> | |||
<ItemGroup> | |||
<_AOTObjectFile Include="%(_BitcodeFile.ObjectFile)" /> | |||
<_AOTObjectFile Include=""%(_BitcodeFile.ObjectFile)"" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add the quotes where this is being used instead of here.
Relates to #89073 #92399