This repository was archived by the owner on Apr 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,10 @@ build:linux --features=per_object_debug_info
45
45
build:linux --action_env=BAZEL_LINKLIBS=-l%:libstdc++.a
46
46
build:linux --action_env=BAZEL_LINKOPTS=-lm
47
47
48
+ # TODO(keith): remove once https://github.com/DataDog/dd-opentracing-cpp/pull/252 is integrated
49
+ # this avoids warnings/errors on arm64 Linux builds
50
+ build:linux --per_file_copt=external/com_github_datadog_dd_opentracing_cpp/.*.cpp@-Wno-type-limits
51
+
48
52
# We already have absl in the build, define absl=1 to tell googletest to use absl for backtrace.
49
53
build --define absl=1
50
54
@@ -373,6 +377,7 @@ build:windows --define tcmalloc=disabled
373
377
build:windows --define wasm=disabled
374
378
build:windows --define manual_stamp=manual_stamp
375
379
build:windows --cxxopt="/std:c++17"
380
+ build:windows --output_groups=+pdb_file
376
381
377
382
# TODO(wrowe,sunjayBhatia): Resolve bugs upstream in curl and rules_foreign_cc
378
383
# See issue https://github.com/bazelbuild/rules_foreign_cc/issues/301
@@ -418,4 +423,4 @@ try-import %workspace%/user.bazelrc
418
423
try-import %workspace%/local_tsan.bazelrc
419
424
420
425
###### modifications for pagespeed
421
- try- import %workspace%/pagespeed.bazelrc
426
+ import %workspace%/pagespeed.bazelrc
Original file line number Diff line number Diff line change 1
- 6.0.0-pre.20220706.4
1
+ 6.0.0rc1
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ load(":aprutil.bzl", "aprutil_build_rule")
13
13
load (":serf.bzl" , "serf_build_rule" )
14
14
load (":closure_compiler.bzl" , "closure_library_rules" )
15
15
16
- ENVOY_COMMIT = "ff49762696b2e6ed3f408a22e1f7a1b7d2487318 " # Oct 11th , 2022
17
- ENVOY_SHA = "ff8303892364ec1be7e5be13e112bc45309aee2bc4da5c4ff035885367f24795 "
16
+ ENVOY_COMMIT = "9ae348cc43e0341ec7eadd6a4addce587afe1b27 " # Nov 5th , 2022
17
+ ENVOY_SHA = "f7215f2e2014c2d4123c5f7a2ba7054fdd33d8fa4ad2977c5bf45d9e231dea6d "
18
18
19
19
BROTLI_COMMIT = "d6d98957ca8ccb1ef45922e978bb10efca0ea541"
20
20
BROTLI_SHA = "ba8be5d701b369f86d14f3701c81d6bf6c6c34015c183ff98352c12ea5f5226b"
Original file line number Diff line number Diff line change @@ -153,10 +153,8 @@ GoogleUrl* GoogleUrl::CopyAndAddEscapedQueryParam(
153
153
query_params.ParseFromUrl (*this );
154
154
query_params.AddEscaped (escaped_name, escaped_value);
155
155
GoogleString query_params_string = query_params.ToEscapedString ();
156
- url::Replacements<char > replace_query;
157
- url::Component query;
158
- query.len = query_params_string.size ();
159
- replace_query.SetQuery (query_params_string.c_str (), query);
156
+ GURL::Replacements replace_query;
157
+ replace_query.SetQueryStr (query_params_string.c_str ());
160
158
GoogleUrl* result = new GoogleUrl (gurl_->ReplaceComponents (replace_query));
161
159
return result;
162
160
}
You can’t perform that action at this time.
0 commit comments