I want to get rid of API-MS-WIN-CRT-STDIO*.dll dependencies by disabling them from boost as well.
So far I have tried to build boost with following command line:
if not exist b2.exe call bootstrap.bat
call b2 runtime-link=static threading=multi toolset=msvc-14.0 address-model=64 --stagedir=msvc-14_stage64 release link=static --with-atomic --with-thread --with-date_time --with-filesystem
also tried this kind of command:
call b2 link=shared threading=multi toolset=msvc-14.0 address-model=64 --stagedir=msvc-14_stage64 release link=static --with-atomic --with-thread --with-date_time --with-filesystem
But still cannot cut off necessary dependencies - I've got compilation errors after this. (As described in stack overflow)
I guess I need to compile boost somehow differently - but how ? I guess _VCRTIMP= & _ACRTIMP= still needs to be somehow enabled - even on boost level ?
Last edit: Tarmik 2016-03-05
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi !
Can you somehow comment following question:
http://stackoverflow.com/questions/35805113/visual-studio-2015-run-time-dependencies-or-how-to-get-rid-of-universal-crt
I want to get rid of API-MS-WIN-CRT-STDIO*.dll dependencies by disabling them from boost as well.
So far I have tried to build boost with following command line:
But still cannot cut off necessary dependencies - I've got compilation errors after this. (As described in stack overflow)
I guess I need to compile boost somehow differently - but how ? I guess _VCRTIMP= & _ACRTIMP= still needs to be somehow enabled - even on boost level ?
Last edit: Tarmik 2016-03-05