dotnet-sdk: fix debugging
Without this attempt to run debugger fails with "Unknown error 0x80131c3c". Underlying problem is that libmscordbi.so cannot find libmscordaccore.so.
This commit is contained in:
parent
ca336ac985
commit
0bc362c485
@ -28,7 +28,7 @@ in
|
|||||||
runHook preBuild
|
runHook preBuild
|
||||||
patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" ./dotnet
|
patchelf --set-interpreter "${stdenv.cc.bintools.dynamicLinker}" ./dotnet
|
||||||
patchelf --set-rpath "${rpath}" ./dotnet
|
patchelf --set-rpath "${rpath}" ./dotnet
|
||||||
find -type f -name "*.so" -exec patchelf --set-rpath "${rpath}" {} \;
|
find -type f -name "*.so" -exec patchelf --set-rpath '$ORIGIN:${rpath}' {} \;
|
||||||
echo -n "dotnet-sdk version: "
|
echo -n "dotnet-sdk version: "
|
||||||
./dotnet --version
|
./dotnet --version
|
||||||
runHook postBuild
|
runHook postBuild
|
||||||
|
Loading…
x
Reference in New Issue
Block a user