You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
msvc.link.dll c:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt\boost_python38.dll
LINK : fatal error LNK1181: cannot open input file 'python38.lib'
call "c:\.conan\d32830e\1\boost\bin.v2\standalone\msvc\msvc-14.0\msvc-setup.bat" x86 >nul
link /NOLOGO /INCREMENTAL:NO /DLL /DEBUG /MACHINE:X86 /MANIFEST /subsystem:console /out:"c:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt\boost_python38.dll" /IMPLIB:"c:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt\boost_python38.lib" /LIBPATH:"c:\python\libs\python38.lib" @"c:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt\boost_python38.dll.rsp"
if %ERRORLEVEL% NEQ 0 EXIT %ERRORLEVEL%
...failed msvc.link.dll c:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt\boost_python38.dll c:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt\boost_python38.lib c:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt\boost_python38.pdb...
...skipped <pc:\.conan\be9e3b4\1\lib>boost_python38.dll for lack of <pc:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt>boost_python38.dll...
...skipped <pc:\.conan\be9e3b4\1\lib>boost_python38.lib for lack of <pc:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt>boost_python38.lib...
...skipped <pc:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt>libboost_python-variant-shared-py3.8.cmake for lack of <pc:\.conan\d32830e\1\boost\bin.v2\libs\python\build\msvc-14.0\dbg\pythn-3.8\thrd-mlt>boost_python38.lib...
The path to python38.lib is correct but linker does not see it. Everything works after changing LIBPATH to "c:\python\libs". I do this by changing line 343 from: return python_lib.replace('\\', '/')
to: return libdir.replace('\\', '/')
The text was updated successfully, but these errors were encountered:
Package and Environment Details (include every applicable attribute)
Conan profile (output of
conan profile show default
orconan profile show <profile>
if custom profile is in use)Steps to reproduce (Include if Applicable)
conanfile.txt:
conan install conanfile.txt -s build_type=Debug --build=missing
Logs (Include/Attach if Applicable)
Click to expand log
The path to python38.lib is correct but linker does not see it. Everything works after changing LIBPATH to "c:\python\libs". I do this by changing line 343 from:
return python_lib.replace('\\', '/')
to:
return libdir.replace('\\', '/')
The text was updated successfully, but these errors were encountered: