summaryrefslogtreecommitdiff
path: root/src/third_party/scripts
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2018-12-19 11:57:39 -0500
committerBilly Donahue <billy.donahue@mongodb.com>2018-12-19 13:01:20 -0500
commit1a0d01a2d8ca27934bceb1bd65643915a1cca17a (patch)
treec5bab917495d898444a093fe16cd69069440b2d3 /src/third_party/scripts
parentffb3c503fb1c564097f4e814ede8af26796339e5 (diff)
downloadmongo-1a0d01a2d8ca27934bceb1bd65643915a1cca17a.tar.gz
SERVER-38462 just apply all of patches/*.patch. Update abseil revision.
SERVER-38462: add ifdef for ABSL_FORCE_ALIGNED_ACCESS add forgotton absl new files Revert "SERVER-38462: add ifdef for ABSL_FORCE_ALIGNED_ACCESS" This reverts commit f7f51c062ceb23d6b5395d4fce75b3e4e0b9ddff.
Diffstat (limited to 'src/third_party/scripts')
-rw-r--r--src/third_party/scripts/absl_get_sources.sh7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/third_party/scripts/absl_get_sources.sh b/src/third_party/scripts/absl_get_sources.sh
index 42a84c65ec9..29c1c3ce295 100644
--- a/src/third_party/scripts/absl_get_sources.sh
+++ b/src/third_party/scripts/absl_get_sources.sh
@@ -18,7 +18,7 @@ if grep -q Microsoft /proc/version; then
fi
NAME=abseil-cpp
-REVISION=070f6e47b33a2909d039e620c873204f78809492
+REVISION=111ca7060a6ff50115ca85b59f6b5d8c8c5e9105
if grep -q Microsoft /proc/version; then
SRC_ROOT=$(wslpath -u $(powershell.exe -Command "Get-ChildItem Env:TEMP | Get-Content | Write-Host"))
SRC_ROOT+="$(mktemp -u /abseil-cpp.XXXXXX)"
@@ -47,8 +47,9 @@ if [ ! -d $SRC ]; then
pushd $SRC
$GIT_EXE checkout $REVISION
- $GIT_EXE am $PATCH_DIR/0001-Fix-warning-C4309-argument-truncation-of-constant-va.patch
- $GIT_EXE am $PATCH_DIR/0002-Use-_umul128-on-Windows-to-improve-performance-of-Mi.patch
+ for p in $(shopt -s nullglob; echo $PATCH_DIR/*.patch); do
+ $GIT_EXE am "$p"
+ done
popd
fi