1
0

windows build: separate 32/64 bit build caches

specify which architecture to target by setting WIN_ARCH env var
This commit is contained in:
SomberNight
2021-03-07 14:28:16 +01:00
parent e07f615bbb
commit f1f584c4c4
4 changed files with 39 additions and 21 deletions

View File

@@ -65,4 +65,7 @@ info "Building $pkgname..."
host_strip "$here/$pkgname/dist/lib/$dlname"
cp -fpv "$here/$pkgname/dist/lib/$dlname" "$PROJECT_ROOT/electrum" || fail "Could not copy the $pkgname binary to its destination"
info "$dlname has been placed in the inner 'electrum' folder."
if [ -n "$DLL_TARGET_DIR" ] ; then
cp -fpv "$here/$pkgname/dist/lib/$dlname" "$DLL_TARGET_DIR" || fail "Could not copy the $pkgname binary to DLL_TARGET_DIR"
fi
)