-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
All VS2010 projects have incorrect Release|x64 configuration #1430
Comments
Thanks for the feedback! We'll look into this. |
ARM Internal Ref: IOTSSL-2165 |
A |
This trivial change is of the kind that are cheaper to fix and forget immediately rather than keep and maintain in the list. |
@RonEld Why is this being closed? |
Inherit PlatformToolset from the project configuration. This allow the project to configure PlatformToolset, and aligns the Release x64 build with other build types. Fixes Mbed-TLS#1430
Inherit PlatformToolset from the project configuration. This allow the project to configure PlatformToolset, and aligns the Release x64 build with other build types. Fixes Mbed-TLS#1430
Inherit PlatformToolset from the project configuration. This allow the project to configure PlatformToolset, and aligns the Release x64 build with other build types. Fixes Mbed-TLS#1430
Inherit PlatformToolset from the project configuration. This allow the project to configure PlatformToolset, and aligns the Release x64 build with other build types. Fixes Mbed-TLS#1430
Inherit PlatformToolset from the project configuration. This allow the project to configure PlatformToolset, and aligns the Release x64 build with other build types. Fixes Mbed-TLS#1430
The issue was mostly fixed in the development branches of both |
@irwir Please raise PRs and we can review and merge from there. Thanks! |
@Patater |
@irwir The smaller the PR, the quicker it is for us to review and merge. Large PRs tend to get left behind and go stale. The preferred approach is multiple PRs that can be merged independently. |
The previous PRs had correct template project, but somehow it was not merged.
The previous PRs had correct template project, but somehow it was not merged. Signed-off-by: irwir <irwir@users.noreply.github.com>
Description
Bug
All VS2010 projects have an error in
Release|x64
configuration.This line must be deleted:
<PlatformToolset>Windows7.1SDK</PlatformToolset>
In that case the value would be inherited from project defaults, which is fine - as it is in other configurations.
If
PlatformToolset
was to be defined, the value should have beenv100
.It looks like a
TargetPlatform
definition, but in that case the line is in the wrong place; and this is not necessary either.OS
Mbed OS: Windows
mbed TLS build:
The bug was present in
development
branch since the first commit.The text was updated successfully, but these errors were encountered: