Skip to content
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

Try to detect VS2017 using vswhere #192

Merged
merged 1 commit into from
Jun 27, 2017
Merged

Conversation

refack
Copy link
Contributor

@refack refack commented Apr 21, 2017

Simple try/fail to use vswhere
A little bit more help to solve #157

@refack
Copy link
Contributor Author

refack commented Apr 21, 2017

/cc @KindDragon

set VSWHERE="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
if not exist %VSWHERE% set VSWHERE="%ProgramFiles%\Microsoft Visual Studio\Installer\vswhere.exe"
if not exist %VSWHERE% goto :skip_vswhere
for /f "usebackq tokens=*" %%i in (`%VSWHERE% -latest -products %VSWHERE_IDS% %VSWHERE_REQ% %VSWHERE_PRP%`) do (
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for ping. I think better use -products * instead of IDS and add version here -version "[15.0,16.0)"

%VSWHERE% -latest -version "[15.0,16.0)" -products * %VSWHERE_REQ% %VSWHERE_PRP%

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ASAIK -products * does not cover "Buildtools" ;( (microsoft/vswhere#8) but I'll check.
-latest is supposed to be kinda similar to -version "[15.0,16.0)", no?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ASAIK -products * does not cover "Buildtools" ;( (microsoft/vswhere#8) but I'll check.

Without -products does not cover "Buildtools", but -products * cover all products microsoft/vswhere#23

-latest is supposed to be kinda similar to -version "[15.0,16.0)", no?

"-latest" will find even theoretical "Visual Studio 2018/2019" (> 16.0). I think we should limit to VS2017 only

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As future proofing, If i find a have to better detect and set "BOOST_JAM_TOOLSET=vc141" I'd rather remove the version limit... So the code will continue to work without changes.
Sound reasonable?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did not fully understand. If you remove version limit and theoretical VS2019 will be with toolset "vc150", then we set "BOOST_JAM_TOOLSET=vc141" when bjam will use new toolset from VS2019

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If for vs2019/vc150 I can detect the vc150 and set BOOST_JAM_TOOLSET=vc150 bjam will fail ("unknown toolset vc150")
But this code will not need to change

Copy link
Contributor

@KindDragon KindDragon Apr 21, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you call vswhere without -version "[15.0,16.0)" it will set BOOST_JAM_TOOLSET=vc141, VS150COMNTOOLS (BOOST_JAM_TOOLSET_ROOT) will be set to VS2019 and bjam continue with wrong VS

for /f "usebackq tokens=*" %%i in (`%VSWHERE% -latest -products %VSWHERE_IDS% %VSWHERE_REQ% %VSWHERE_PRP%`) do (
set "VS150COMNTOOLS=%%i"
set "BOOST_JAM_TOOLSET=vc141"
set "BOOST_JAM_TOOLSET_ROOT=%%i\VC\"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please also add BOOST_JAM_TOOLSET_ROOT detection to config_toolset.bat

SET cl_path_cmd="%~dp0..\tools\vc141helper\cl_path.cmd"
if "_%BOOST_JAM_TOOLSET_ROOT%_" == "__" (
for /f "tokens=*" %%A in ('cmd /D /S /C "%cl_path_cmd% 14.10"') do if NOT "_%%A_" == "__" (
set "BOOST_JAM_TOOLSET_ROOT=%%A\VC\"))

It will be used if user call build.bat vc141

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh yeah right...

@refack
Copy link
Contributor Author

refack commented Apr 21, 2017

@KindDragon addressed
@grafikrobot I think it's complete, let's see what the CI says

@KindDragon
Copy link
Contributor

@refack AppVeyour show message 2 times: "The system cannot find the batch label specified - skip_vswhere"

@refack
Copy link
Contributor Author

refack commented Apr 21, 2017

@refack AppVeyour show message 2 times: "The system cannot find the batch label specified - skip_vswhere"

Although I see it's not fatal, I fixed it.

@KindDragon
Copy link
Contributor

Can you rebase on top of latest changes to fix AppVeyor?

@refack
Copy link
Contributor Author

refack commented May 6, 2017

@KindDragon done.

@KindDragon
Copy link
Contributor

KindDragon commented Jun 7, 2017

Hi @grafikrobot. Do you have any news about this PR?

@grafikrobot grafikrobot merged commit 2e5e8d3 into boostorg:develop Jun 27, 2017
@refack
Copy link
Contributor Author

refack commented Jun 27, 2017

🎉
If any further help needed, ping me, I'm fairly responsive...

@grafikrobot
Copy link
Member

Sorry it took so long had to read it carefully and try it out and I had gobs of other things on my plate.. But even with being careful it still messed up the builds. Looks like for anything non-141 it fails to do the general bootstrap.bat procedure to build b2.exe. For example https://ci.appveyor.com/project/boostorg/boost/build/1.0.3013/job/0q1y55yeq0xauy7f#L24

@refack
Copy link
Contributor Author

refack commented Jun 27, 2017

I'm looking into it right now.

@github-actions github-actions bot added the transition Transition to bfgroup/b2 label Oct 2, 2021
@github-actions github-actions bot locked and limited conversation to collaborators Oct 2, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
transition Transition to bfgroup/b2 wip
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants