heavycareer

How To Install Platform Toolset V110

Join GitHub today

GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.

Sign up 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

commented Jun 11, 2015

I am trying to produce a .vcxproj for VS2012 that supports both Win32 and x64 targets, and produces Windows XP compatible executables for the Win32 version. The only way this is possible is to mix both v110 and v110_xp platform toolsets in this .vcxproj.

I am looking to see if it's possible to expand the acceptable list of platform toolsets to include v110_xp.
MSDN link describing v110_xp

It seems like an action is bound to only provide one platform toolset for any code generation 'session', so I'm not sure the architecture of premake even would allow this as it is.

Any thoughts about this?

Member

commented Jun 11, 2015

we just added this to our scripts.

which you can obviously make conditional on a setting... extend at will ;)

Member

commented Jun 12, 2015

Toolsets are specified per configuration…wouldn't this work (untested)?

Author

commented Jun 12, 2015

That is exactly what I tried, but 'v110_xp' is not a supported platform toolset out of the box. And it looks like each version of visual studio supports one toolset only. I can't extend it to a list. As far as I know?

Member

commented Jun 13, 2015

That is exactly what I tried, but 'v110_xp' is not a supported platform toolset out of the box.

Are you running against the latest sources? I've no trouble setting that value here.

Author

commented Jun 13, 2015

I have the latest sources as of this past Wednesday.

I worked around the issue with Tom's fix above, and some other code.

Member

commented Jun 13, 2015

Okay, I'll close this out, feel free to re-open with new information. Still think my example should work.

Author

commented Jun 18, 2015

This is now working with the latest alpha release, FYI.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
Posted by1 year ago
Archived

Downloading Visual Studio 2012

Hello,

I'm trying to download Visual Studio 2012, but it doesn't seem to be available on the Microsoft website?

I kinda need this version because I'm trying to write a plug-in for Autodesk Maya (3D-animation software). I've tried 2017 but this doesn't seem to work, and the documentation tells me I need 2012. (http://help.autodesk.com/view/MAYAUL/2016/ENU/?guid=__files_Setting_up_your_build_env_Windows_env_32bit_and_64bit_htm)

(error in 2017: error MSB8020: The build tools for Visual Studio 2012 (Platform Toolset = 'v110') cannot be found. To build using the v110 build tools, please install Visual Studio 2012 build tools. Alternatively, you may upgrade to the current Visual Studio tools by selecting the Project menu or right-click the solution, and then selecting 'Retarget solution'. )

Is there still anyway to get Visual Studio 2012? If i remember this used to be free to download, right? Or perhaps i can install Platform Toolset = 'v110'?

Thanks for the help

67% Upvoted