From 9b3606b7c0684dbb736f67ab26b32dc5b556648b Mon Sep 17 00:00:00 2001 From: Rodrigo Queiro Date: Wed, 18 Apr 2018 21:04:11 +0200 Subject: [PATCH] Fix glog warning (#1082) by updating to a version that properly enables __attribute__. This is the last warning in the Bazel build. --- bazel/repositories.bzl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index 01bf36f..4ae2a1d 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -47,11 +47,11 @@ def cartographer_repositories(): _maybe(native.http_archive, name = "com_google_glog", - sha256 = "1ee310e5d0a19b9d584a855000434bb724aa744745d5b8ab1855c85bff8a8e21", - strip_prefix = "glog-028d37889a1e80e8a07da1b8945ac706259e5fd8", + sha256 = "dfc074b41a5b86fc5dda4f0e2e2d6cc5b21f798c9fcc8ed5fea9c8f7c4613be6", + strip_prefix = "glog-dd2b93d761a19860190cb3fa92066c8031e912e3", urls = [ - "https://mirror.bazel.build/github.com/google/glog/archive/028d37889a1e80e8a07da1b8945ac706259e5fd8.tar.gz", - "https://github.com/google/glog/archive/028d37889a1e80e8a07da1b8945ac706259e5fd8.tar.gz", + "https://mirror.bazel.build/github.com/google/glog/archive/dd2b93d761a19860190cb3fa92066c8031e912e3.tar.gz", + "https://github.com/google/glog/archive/dd2b93d761a19860190cb3fa92066c8031e912e3.tar.gz", ], )