Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions git-extra/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pkgbase="mingw-w64-${_realname}"
pkgname=($_realname
"${MINGW_PACKAGE_PREFIX}-${_realname}")
_ver_base=1.1
pkgver=1.1.683.0c63e840c
pkgver=1.1.685.a08718cdd
pkgrel=1
pkgdesc="Git for Windows extra files"
arch=('any')
Expand Down Expand Up @@ -82,7 +82,7 @@ sha256sums=('8ed76d1cb069ac8568f21c431f5e23caebea502d932ab4cdff71396f4f0d5b72'
'683ab066be19cb4defec470ebd53f165ca5dbf761fd40c13aee8abe31ba42803'
'1cf2c13fb97c51375a76ed479362c3cbcdb51ab4d3a745e8d2c3a780badd8d46'
'32223da4e1264d0c9663dd3d4b347131a634e96c2676d673ca58b2a6c58d2aea'
'2cd753e134a9050037a5cbada81d91af6ec9c85e9da696ae908a3633f2c5340a'
'1fae4ff3ce1e75ac90fe6f6130db4d041bc34f59deea679501f57d2c41d37560'
'22f41610dea842890955032af30efdb60e80f310e95a04e57ab36b10e0376923'
'8120b41b869693e07acc4707a0ab45505e7c5e4156a3a44b19152f1f425df85f'
'15b40ab72dea884f659cfbe441e9a40b2d8d63e490a3c14824a55607368e476d'
Expand Down
1 change: 1 addition & 0 deletions git-extra/git-sdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ sdk () {
# for building
makepkg|makepkg-mingw)
cmd=$1; shift
WITH_PDBS="$(! grep -q WITH_PDBS PKGBUILD || ! sdk find_mspdb_dll || echo true)" \
WITHOUT_PDBS="$(! grep -q WITHOUT_PDBS PKGBUILD || sdk find_mspdb_dll || echo true)" \
MAKEFLAGS=${MAKEFLAGS:--j$(nproc)} PKGEXT='.pkg.tar.xz' $cmd --syncdeps --noconfirm --skipchecksums --skippgpcheck "$@"
;;
Expand Down
15 changes: 10 additions & 5 deletions please.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3551,13 +3551,18 @@ build_mingw_w64_git () { # [--only-i686] [--only-x86_64] [--only-aarch64] [--ski
# Work around bug where the incorrect xmlcatalog.exe wrote /etc/xml/catalog
sed -i -e 's|C:/git-sdk-64-ci||g' /etc/xml/catalog

test true = "$GITHUB_ACTIONS" || # GitHub Actions' agents have the mspdb.dll, and cv2pdb finds it
test -n "$SYSTEM_COLLECTIONURI$SYSTEM_TASKDEFINITIONSURI" || # Same for Azure Pipelines
test "$MINGW_ARCH" = "clangarm64" || # We don't need cv2pdb when compiling using Clang/LLVM
find_mspdb_dll >/dev/null || {
test true != "$GITHUB_ACTIONS" && # GitHub Actions' agents have the mspdb.dll, and cv2pdb finds it
test -z "$SYSTEM_COLLECTIONURI$SYSTEM_TASKDEFINITIONSURI" && # Same for Azure Pipelines
test "$MINGW_ARCH" != "clangarm64" && # We don't need cv2pdb when compiling using Clang/LLVM
! find_mspdb_dll >/dev/null && {
WITH_PDBS=
WITHOUT_PDBS=1
export WITHOUT_PDBS
} || {
WITH_PDBS=1
WITHOUT_PDBS=
}
export WITH_PDBS
export WITHOUT_PDBS

(if test -n "$(git config alias.signtool)"
then
Expand Down