The script failed to make a symlink for liblldb.dll because it tried to find it in build_root__/bin whereas Visual Studio places it in build_root__/Debug/bin (for Debug configuration).
Details
Diff Detail
- Repository
- rLLDB LLDB
Event Timeline
Hi Haibo,
Sadly, D68728 doesn't fix the issue. It adds "Debug" to the python path, but the script still tries to find 'liblldb.dll' in the wrong location.
finishSwigPythonLLDB.py | ||
---|---|---|
380 | This command produces an incorrect path for Visual Studio since it concatenates the root build directory with 'bin/liblldb.dll' bypassing configuration name. |
finishSwigPythonLLDB.py | ||
---|---|---|
380 | Hmm understood. The origin change is reverted in rG958091c209d0. So I don't think this is relevant any more. I'll redo the change. Can you help test that time? I don't have a visual studio... |
finishSwigPythonLLDB.py | ||
---|---|---|
380 |
Fixed by reverting the initial commit.
finishSwigPythonLLDB.py | ||
---|---|---|
380 | Yes, now it works well |
finishSwigPythonLLDB.py | ||
---|---|---|
380 |
Yes, of course! BTW, I suppose that '--cmakeBuildConfiguration' option can fix the issue for XCode too. |
This command produces an incorrect path for Visual Studio since it concatenates the root build directory with 'bin/liblldb.dll' bypassing configuration name.