Skip to content

Commit 2d53052

Browse files
committed
Use --no-load-call for windows cross compilation TH proxy & interpreter
1 parent 7c82794 commit 2d53052

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

overlays/mingw_w64.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ let
5353
# Not sure why this `unset` helps. It might avoids some kind of overflow issue. We see `wine` fail to start when building `cardano-wallet-cli` test `unit`.
5454
unset pkgsHostTargetAsString
5555
unset LINK_DLL_FOLDERS
56-
WINEDLLOVERRIDES="winemac.drv=d" WINEDEBUG=warn-all,fixme-all,-menubuilder,-mscoree,-ole,-secur32,-winediag WINEPREFIX=$TMP ${wine}/bin/wine64 $REMOTE_ISERV/${interpreter.exeName} tmp $PORT $ISERV_ARGS &
56+
WINEDLLOVERRIDES="winemac.drv=d" WINEDEBUG=warn-all,fixme-all,-menubuilder,-mscoree,-ole,-secur32,-winediag WINEPREFIX=$TMP ${wine}/bin/wine64 $REMOTE_ISERV/${interpreter.exeName} tmp $PORT --no-load-call $ISERV_ARGS &
5757
(>&2 echo "---| ${interpreter.exeName} should have started on $PORT")
5858
RISERV_PID="$!"
59-
ISERV_TARGET=WINE ${iserv-proxy}/bin/iserv-proxy $@ 127.0.0.1 "$PORT" $PROXY_ARGS
59+
ISERV_TARGET=WINE ${iserv-proxy}/bin/iserv-proxy $@ 127.0.0.1 "$PORT" --no-load-call $PROXY_ARGS
6060
(>&2 echo "---> killing ${interpreter.exeName}...")
6161
kill $RISERV_PID
6262
'';

0 commit comments

Comments
 (0)