[object Object]

← back to Exo

try/except for decode, #75

5eafd5a3052f83ab4bb030b95495a61f8d09512c · 2024-07-27 13:00:14 -0700 · Mark Kockerbeck

Files touched

Diff

commit 5eafd5a3052f83ab4bb030b95495a61f8d09512c
Author: Mark Kockerbeck <xeb@hey.com>
Date:   Sat Jul 27 13:00:14 2024 -0700

    try/except for decode, #75
---
 decode_discovery.py                   |   42 +
 errors.txt                            | 7967 +++++++++++++++++++++++++++++++++
 exo/networking/grpc/grpc_discovery.py |    9 +-
 out.txt                               |  164 +
 run.sh                                |    2 +
 5 files changed, 8182 insertions(+), 2 deletions(-)

diff --git a/decode_discovery.py b/decode_discovery.py
new file mode 100644
index 00000000..08387808
--- /dev/null
+++ b/decode_discovery.py
@@ -0,0 +1,42 @@
+import struct
+
+def decode_mikrotik_discovery(data):
+    result = {}
+    # Skip the first 4 bytes
+    index = 4
+    #print(f"Total data length: {len(data)}")
+    while index < len(data):
+        #print(f"Current index: {index}")
+        if index + 4 > len(data):
+            #print("Not enough data for header")
+            break
+        type_field, length = struct.unpack('!HH', data[index:index+4])
+        #print(f"Type: {type_field:02x}, Length: {length}")
+        index += 4
+        if index + length > len(data):
+            #print(f"Not enough data for value (need {length}, have {len(data) - index})")
+            break
+        value = data[index:index+length]
+        try:
+            if type_field in [0x05, 0x07, 0x08, 0x0b, 0x0c, 0x10]:
+                result[type_field] = value.decode('ascii', errors='ignore')
+            elif type_field in [0x00, 0x0a, 0x0e]:
+                result[type_field] = struct.unpack('!I', value.rjust(4, b'\x00'))[0]
+            elif type_field == 0x11:
+                result[type_field] = '.'.join(map(str, value))
+            else:
+                result[type_field] = value.hex()
+        except Exception as e:
+            print(f"Error processing field {type_field:02x}: {e}")
+            result[type_field] = value.hex()
+        index += length
+    return result
+
+# Your byte string
+data = b'\xbf\xa2\x04\x00\x00\x01\x00\x06,\xc8\x1b\x13\x98\xe0\x00\x05\x00\x08MikroTik\x00\x07\x00\x0f6.49.1 (stable)\x00\x08\x00\x08MikroTik\x00\n\x00\x04\xd7|\xf3\x00\x00\x0b\x00\tX4N0-HRA8\x00\x0c\x00\x08RB760iGS\x00\x0e\x00\x01\x00\x00\x10\x00\rbridge/ether5\x00\x11\x00\x04\xc0\xa8X\x01'
+
+decoded = decode_mikrotik_discovery(data)
+
+# Print in a more readable format
+for key, value in decoded.items():
+    print(f"Field {key:02x}: {value}")
diff --git a/errors.txt b/errors.txt
new file mode 100644
index 00000000..723f5dea
--- /dev/null
+++ b/errors.txt
@@ -0,0 +1,7967 @@
+  error: subprocess-exited-with-error
+  
+  × python setup.py bdist_wheel did not run successfully.
+  │ exit code: 1
+  ╰─> [6291 lines of output]
+      SSE2 not enabled on linux-x86_64 platform
+      Found cython-generated files...
+      running bdist_wheel
+      running build
+      running build_py
+      running build_project_metadata
+      creating pyb
+      creating pyb/lib.linux-x86_64-cpython-313
+      creating pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_interceptor.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_compression.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_typing.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_observability.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_grpcio_metadata.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_utilities.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_runtime_protos.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_common.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_simple_stubs.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_auth.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_channel.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_server.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      copying src/python/grpcio/grpc/_plugin_wrapping.py -> pyb/lib.linux-x86_64-cpython-313/grpc
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/framework
+      copying src/python/grpcio/grpc/framework/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_interceptor.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_base_channel.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_typing.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_call.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_base_call.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_base_server.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_utils.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_metadata.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_channel.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      copying src/python/grpcio/grpc/aio/_server.py -> pyb/lib.linux-x86_64-cpython-313/grpc/aio
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/experimental
+      copying src/python/grpcio/grpc/experimental/gevent.py -> pyb/lib.linux-x86_64-cpython-313/grpc/experimental
+      copying src/python/grpcio/grpc/experimental/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/experimental
+      copying src/python/grpcio/grpc/experimental/session_cache.py -> pyb/lib.linux-x86_64-cpython-313/grpc/experimental
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      copying src/python/grpcio/grpc/beta/_server_adaptations.py -> pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      copying src/python/grpcio/grpc/beta/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      copying src/python/grpcio/grpc/beta/_client_adaptations.py -> pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      copying src/python/grpcio/grpc/beta/_metadata.py -> pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      copying src/python/grpcio/grpc/beta/utilities.py -> pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      copying src/python/grpcio/grpc/beta/interfaces.py -> pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      copying src/python/grpcio/grpc/beta/implementations.py -> pyb/lib.linux-x86_64-cpython-313/grpc/beta
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/_cython
+      copying src/python/grpcio/grpc/_cython/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/_cython
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/framework/common
+      copying src/python/grpcio/grpc/framework/common/cardinality.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/common
+      copying src/python/grpcio/grpc/framework/common/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/common
+      copying src/python/grpcio/grpc/framework/common/style.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/common
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      copying src/python/grpcio/grpc/framework/foundation/stream_util.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      copying src/python/grpcio/grpc/framework/foundation/abandonment.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      copying src/python/grpcio/grpc/framework/foundation/callable_util.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      copying src/python/grpcio/grpc/framework/foundation/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      copying src/python/grpcio/grpc/framework/foundation/stream.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      copying src/python/grpcio/grpc/framework/foundation/logging_pool.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      copying src/python/grpcio/grpc/framework/foundation/future.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/foundation
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces
+      copying src/python/grpcio/grpc/framework/interfaces/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/face
+      copying src/python/grpcio/grpc/framework/interfaces/face/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/face
+      copying src/python/grpcio/grpc/framework/interfaces/face/face.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/face
+      copying src/python/grpcio/grpc/framework/interfaces/face/utilities.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/face
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/base
+      copying src/python/grpcio/grpc/framework/interfaces/base/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/base
+      copying src/python/grpcio/grpc/framework/interfaces/base/base.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/base
+      copying src/python/grpcio/grpc/framework/interfaces/base/utilities.py -> pyb/lib.linux-x86_64-cpython-313/grpc/framework/interfaces/base
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/experimental/aio
+      copying src/python/grpcio/grpc/experimental/aio/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/experimental/aio
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/_cython/_cygrpc
+      copying src/python/grpcio/grpc/_cython/_cygrpc/__init__.py -> pyb/lib.linux-x86_64-cpython-313/grpc/_cython/_cygrpc
+      creating pyb/lib.linux-x86_64-cpython-313/grpc/_cython/_credentials
+      copying src/python/grpcio/grpc/_cython/_credentials/roots.pem -> pyb/lib.linux-x86_64-cpython-313/grpc/_cython/_credentials
+      running build_ext
+      Found cython-generated files...
+      building 'grpc._cython.cygrpc' extension
+      creating pyb/temp.linux-x86_64-cpython-313
+      creating pyb/temp.linux-x86_64-cpython-313/src
+      creating pyb/temp.linux-x86_64-cpython-313/src/core
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/channelz
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/client_channel
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/backend_metrics
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/census
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/channel_idle
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/fault_injection
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/client
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/message_compress
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/server
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/message_size
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/rbac
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/stateful_session
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/gcp
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/alpn
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/client
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/server
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/inproc
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/annotations
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/accesslog
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/accesslog/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/bootstrap
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/bootstrap/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/cluster
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/cluster/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/common
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/common/matcher
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/common/matcher/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/endpoint
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/endpoint/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/listener
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/listener/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/metrics
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/metrics/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/overload
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/overload/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/rbac
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/rbac/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/route
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/route/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/tap
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/tap/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/data
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/data/accesslog
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/data/accesslog/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/clusters
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/common
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/common/fault
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/fault
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/router
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/network
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/http/stateful_session
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/upstreams
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/upstreams/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/discovery
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/discovery/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/load_stats
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/load_stats/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/status
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/status/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/http/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/metadata
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/metadata/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/tracing
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/tracing/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api/expr
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api/expr/v1alpha1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/rpc
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/opencensus
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/opencensus/proto
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/opencensus/proto/trace
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/opencensus/proto/trace/v1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/gcp
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/health
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/health/v1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/lb
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/lb/v1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/lookup
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/lookup/v1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/udpa
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/udpa/annotations
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/validate
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/annotations
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/annotations/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/data
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/data/orca
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/data/orca/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/service
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/service/orca
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/service/orca/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/annotations
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/accesslog
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/bootstrap
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/cluster
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/cluster/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/common
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/common/matcher
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/endpoint
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/listener
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/listener/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/metrics
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/metrics/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/overload
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/overload/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/rbac
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/rbac/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/route
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/route/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/tap
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/tap/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/data
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/data/accesslog
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/clusters
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/common
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/network
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/upstreams
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/discovery
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/discovery/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/load_stats
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/status
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/status/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/http/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/metadata
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/metadata/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/tracing
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/tracing/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api/expr
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/rpc
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/opencensus
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/opencensus/proto
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/opencensus/proto/trace
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/src
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/src/proto
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/src/proto/grpc
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/src/proto/grpc/lookup
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/udpa
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/udpa/annotations
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/validate
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/annotations
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/annotations/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/v3
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/handshaker
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/endpoint_info
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/http_connect
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/security
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/tcp_connect
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/address_utils
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/backoff
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/compression
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/config
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/debug
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/cf_engine
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/thread_pool
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/thready_event_engine
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/work_queue
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/experiments
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/android
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/iphone
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/linux
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/msys
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/posix
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/linux
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/posix
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/windows
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/http
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/event_engine_shims
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/json
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/matchers
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/promise
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/certificate_provider
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/context
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/composite
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/external
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/fake
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/google_default
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/iam
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/insecure
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/jwt
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/local
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/oauth2
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/plugin
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/ssl
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/xds
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/alts
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/fake
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/insecure
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/local
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/ssl
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/tls
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/transport
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/util
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/slice
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/lib/uri
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/grpclb
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/outlier_detection
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/pick_first
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/priority
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/ring_hash
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/rls
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/round_robin
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/weighted_round_robin
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/weighted_target
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/xds
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/plugin_registry
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/binder
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/c_ares
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/event_engine
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/native
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/fake
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/google_c2p
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/sockaddr
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/resolver/xds
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/server
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/service_config
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/crypt
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/handshaker
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/zero_copy_frame_protector
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl/key_logging
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl/session_cache
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/xds
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc
+      creating pyb/temp.linux-x86_64-cpython-313/src/core/xds/xds_client
+      creating pyb/temp.linux-x86_64-cpython-313/src/python
+      creating pyb/temp.linux-x86_64-cpython-313/src/python/grpcio
+      creating pyb/temp.linux-x86_64-cpython-313/src/python/grpcio/grpc
+      creating pyb/temp.linux-x86_64-cpython-313/src/python/grpcio/grpc/_cython
+      creating pyb/temp.linux-x86_64-cpython-313/third_party
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/numeric
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/profiling
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/profiling/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/types
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/address_sorting
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/base64
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/blake2
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bn_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/buf
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bytestring
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/chacha
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/conf
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/curve25519
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/curve25519/asm
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/des
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/dh_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/digest_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/dsa
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ec_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ecdh_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/engine
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/err
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/fipsmodule
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/hpke
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/hrss
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/hrss/asm
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/keccak
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/kyber
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/lhash
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/obj
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pkcs7
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pkcs8
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/poly1305
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pool
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rc4
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rsa_extra
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/siphash
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/stack
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/trust_token
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/third_party
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/third_party/fiat
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/third_party/fiat/asm
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/cares
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/re2
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/re2/util
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/base
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/hash
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/json
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/lex
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mem
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_descriptor
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_descriptor/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_table
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_table/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/text
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/wire
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/wire/internal
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/utf8_range
+      creating pyb/temp.linux-x86_64-cpython-313/third_party/zlib
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/subchannel.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/subchannel.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/channelz/channel_trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/channelz/channel_trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/stream_lists.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/stream_lists.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/rbac/rbac_service_config_parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/rbac/rbac_service_config_parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/frame_rst_stream.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/frame_rst_stream.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/validate/validate.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/validate/validate.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/rpc/status.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/rpc/status.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/api/annotations.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api/annotations.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/api/http.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api/http.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/backoff/backoff.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/backoff/backoff.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/config/config_vars.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/config/config_vars.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/event_engine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/event_engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/traced_buffer_list.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/traced_buffer_list.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/linux/log.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/linux/log.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/windows/string.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows/string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/posix/thd.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/posix/thd.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/windows/string_util.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows/string_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/windows/sync.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows/sync.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/windows/time.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows/time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/windows/tmpfile.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows/tmpfile.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/api/http.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api/http.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/crash.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/crash.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/http/httpcli.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/http/httpcli.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/validate/validate.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/validate/validate.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/endpoint_info/endpoint_info_handshaker.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from src/core/ext/transport/chttp2/transport/frame_rst_stream.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from src/core/ext/transport/chttp2/transport/frame_rst_stream.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/client_channel/subchannel.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/client_channel/subchannel.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/log.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/log.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/examine_stack.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/examine_stack.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/stream_lists.cc:24:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/stream_lists.cc:24:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/ref_counted_string.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/ref_counted_string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/forkable.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/forkable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/ev_epoll1_linux.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/ev_epoll1_linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/internal_errqueue.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/internal_errqueue.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/sockaddr_utils_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/sockaddr_utils_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_server_utils_posix_common.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_server_utils_posix_common.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/channelz/channelz.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/channelz/channelz.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/json/json_object_loader.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/json/json_object_loader.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows/grpc_polled_fd_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/fork.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/fork.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/windows/iocp.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows/iocp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/insecure/insecure_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/insecure/insecure_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/windows/native_windows_dns_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows/native_windows_dns_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/backoff/random_early_detection.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/backoff/random_early_detection.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/windows/win_socket.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows/win_socket.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/config/config_vars_non_generated.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/config/config_vars_non_generated.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/windows/windows_endpoint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows/windows_endpoint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/xds/xds_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/xds/xds_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/windows/windows_engine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows/windows_engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/windows/windows_listener.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/windows/windows_listener.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/iocp_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/iocp_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/work_queue/basic_work_queue.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/work_queue/basic_work_queue.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/iomgr.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/iomgr.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from src/core/lib/event_engine/forkable.cc:15:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/msys/tmpfile.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/msys/tmpfile.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/posix/cpu.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/posix/cpu.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/audit_logging.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/audit_logging.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/posix/log.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/posix/log.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/host_port.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/host_port.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/posix/string.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/posix/string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/status_helper.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/status_helper.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/config/core_configuration.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/config/core_configuration.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/socket_factory_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/socket_factory_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/posix/sync.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/posix/sync.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/posix/time.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/posix/time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/call_tracer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/call_tracer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/call_creds_util.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/call_creds_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/posix/tmpfile.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/posix/tmpfile.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/http/httpcli.cc:51:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/tcp_connect/tcp_connect_handshaker.h:22,
+                       from src/core/lib/http/httpcli.cc:38:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/linux/env.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/linux/env.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/experiments/config.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/experiments/config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/iomgr_internal.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/iomgr_internal.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/ev_poll_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/ev_poll_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/varint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/varint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/frame_settings.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/frame_settings.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from ./src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h:30,
+                       from src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc:14:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/load_file.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/load_file.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/socket_mutator.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/socket_mutator.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/authorization_policy_provider_vtable.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/authorization_policy_provider_vtable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/string.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/xds/xds_credentials.h:40,
+                       from src/core/lib/security/credentials/xds/xds_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/xds/xds_credentials.h:40,
+                       from src/core/lib/security/credentials/xds/xds_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/insecure/insecure_credentials.h:30,
+                       from src/core/lib/security/credentials/insecure/insecure_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/insecure/insecure_credentials.h:30,
+                       from src/core/lib/security/credentials/insecure/insecure_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/json/json_reader.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/json/json_reader.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/write_size_policy.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/write_size_policy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/ev_poll_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/ev_poll_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/sync.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/sync.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/strerror.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/strerror.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/iomgr_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/iomgr_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/handshaker.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/handshaker.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/experiments/experiments.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/experiments/experiments.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/socket_utils_common_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/socket_utils_common_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/mpscq.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/mpscq.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/jwt/json_token.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/jwt/json_token.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_server_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_server_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/alloc.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/alloc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/sync_abseil.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/sync_abseil.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/timer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/timer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/tchar.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/tchar.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/time.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from ./src/core/lib/event_engine/posix_engine/ev_poll_posix.h:29,
+                       from src/core/lib/event_engine/posix_engine/ev_poll_posix.cc:15:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/ev_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/ev_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/call_creds_util.h:26,
+                       from src/core/lib/security/credentials/call_creds_util.cc:17:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/call_creds_util.h:26,
+                       from src/core/lib/security/credentials/call_creds_util.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/resolved_address.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/resolved_address.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/writing.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/writing.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/evaluate_args.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/evaluate_args.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/per_cpu.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/per_cpu.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/android/log.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/android/log.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/subchannel_pool_interface.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/subchannel_pool_interface.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/frame_settings.cc:37:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/frame_settings.cc:37:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/atm.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/atm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/time.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/posix/directory_reader.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/posix/directory_reader.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/channel_args.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/channel_args.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/iomgr_posix_cfstream.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/iomgr_posix_cfstream.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/iomgr_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/iomgr_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/alts/alts_security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/alts/alts_security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/lockfree_event.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/lockfree_event.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/iphone/cpu.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/iphone/cpu.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/event_poller_posix_default.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/linux/cpu.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/linux/cpu.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/timer_generic.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/timer_generic.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/http/httpcli_security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/http/httpcli_security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/handshaker_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/handshaker_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/shim.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/shim.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/channel_creds_registry_init.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/channel_creds_registry_init.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/time_precise.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/time_precise.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/config/load_config.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/config/load_config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/socket_utils_linux.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/socket_utils_linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/time_averaged_stats.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/time_averaged_stats.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/time_util.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/time_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/ev_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/ev_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/slice/slice.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/slice/slice.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/event_engine_shims/closure.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/event_engine_shims/closure.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc:24:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/windows/cpu.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows/cpu.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gpr/windows/log.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gpr/windows/log.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/event_string.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/event_string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/channelz/channelz_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/channelz/channelz_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/subchannel_stream_client.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/subchannel_stream_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/posix/env.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/posix/env.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/stateful_session/stateful_session_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/stateful_session/stateful_session_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/json/json_util.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/json/json_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/posix/stat.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/posix/stat.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/slice.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/slice.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/uuid_v4.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/uuid_v4.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/debug/event_log.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/debug/event_log.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/polling_entity.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/polling_entity.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/internal_errqueue.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/internal_errqueue.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/jwt/jwt_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/jwt/jwt_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/chttp2_transport.h:41,
+                       from src/core/ext/transport/chttp2/transport/writing.cc:40:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/ext/transport/chttp2/transport/chttp2_transport.h:32,
+                       from src/core/ext/transport/chttp2/transport/writing.cc:40:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/http_connect/http_connect_handshaker.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/http_connect/http_connect_handshaker.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/lockfree_event.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/lockfree_event.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/init.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/init.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/frame_window_update.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/frame_window_update.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/slice/slice_buffer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/slice/slice_buffer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/timer_heap.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/timer_heap.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/validation_errors.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/validation_errors.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/socket_utils_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/socket_utils_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/event_engine_shims/endpoint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/event_engine_shims/endpoint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/slice_buffer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/slice_buffer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/error_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/error_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from src/core/lib/event_engine/posix_engine/lockfree_event.cc:26:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/debug/histogram_view.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/debug/histogram_view.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/debug/stats.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/debug/stats.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/security_connector/alts/alts_security_connector.cc:52:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/security/security_handshaker.h:29,
+                       from src/core/lib/security/security_connector/alts/alts_security_connector.cc:41:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/http/httpcli_security_connector.cc:50:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/security/security_handshaker.h:29,
+                       from src/core/lib/http/httpcli_security_connector.cc:38:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/credentials/channel_creds_registry_init.cc:41:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/lib/security/credentials/channel_creds_registry_init.cc:33:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/pollset.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/pollset.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/json/json_writer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/json/json_writer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/slice/slice_refcount.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/slice/slice_refcount.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/subchannel_stream_client.h:35,
+                       from src/core/client_channel/subchannel_stream_client.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/subchannel_stream_client.h:35,
+                       from src/core/client_channel/subchannel_stream_client.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/timer_manager.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/timer_manager.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/tcp_socket_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/tcp_socket_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/debug/stats_data.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/debug/stats_data.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/socket_utils_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/socket_utils_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/socket_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/socket_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/systemd_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/systemd_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/windows/directory_reader.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/windows/directory_reader.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/jwt/jwt_credentials.h:42,
+                       from src/core/lib/security/credentials/jwt/jwt_credentials.cc:18:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/jwt/jwt_credentials.h:42,
+                       from src/core/lib/security/credentials/jwt/jwt_credentials.cc:18:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/windows/env.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/windows/env.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/windows/stat.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/windows/stat.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/slice/slice_string_helpers.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/slice/slice_string_helpers.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/message.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/message.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/windows/thd.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/windows/thd.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/gprpp/work_serializer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/gprpp/work_serializer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/stateful_session/stateful_session_filter.h:32,
+                       from src/core/ext/filters/stateful_session/stateful_session_filter.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h:32,
+                       from ./src/core/ext/filters/stateful_session/stateful_session_filter.h:29,
+                       from src/core/ext/filters/stateful_session/stateful_session_filter.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_window_update.h:29,
+                       from src/core/ext/transport/chttp2/transport/frame_window_update.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_window_update.h:29,
+                       from src/core/ext/transport/chttp2/transport/frame_window_update.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/api_trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/api_trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/matchers/matchers.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/matchers/matchers.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/channel_args_preconditioning.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/channel_args_preconditioning.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/timer_manager.h:33,
+                       from src/core/lib/surface/init.cc:34:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/backup_poller.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/backup_poller.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/event_engine_shims/tcp_client.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/event_engine_shims/tcp_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/posix_endpoint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/posix_endpoint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/pollset_set.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/pollset_set.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/debug/trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/debug/trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/pollset_set_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/pollset_set_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/pollset_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/pollset_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/lib/security/authorization/grpc_server_authz_filter.h:25,
+                       from src/core/lib/surface/init.cc:42:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/lib/surface/init.cc:32:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/core/lib/event_engine/tcp_socket_utils.cc: In function ‘bool grpc_event_engine::experimental::ResolvedAddressToV4Mapped(const grpc_event_engine::experimental::EventEngine::ResolvedAddress&, grpc_event_engine::experimental::EventEngine::ResolvedAddress*)’:
+      src/core/lib/event_engine/tcp_socket_utils.cc:233:11: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘class grpc_event_engine::experimental::EventEngine::ResolvedAddress’; use assignment or value-initialization instead [-Wclass-memaccess]
+        233 |     memset(resolved_addr6_out, 0, sizeof(*resolved_addr6_out));
+            |     ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/event_engine/tcp_socket_utils.h:22,
+                       from src/core/lib/event_engine/tcp_socket_utils.cc:14:
+      include/grpc/event_engine/event_engine.h:156:9: note: ‘class grpc_event_engine::experimental::EventEngine::ResolvedAddress’ declared here
+        156 |   class ResolvedAddress {
+            |         ^~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/byte_buffer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/byte_buffer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/resolve_address.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/resolve_address.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/grpc_authorization_engine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/grpc_authorization_engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/unix_sockets_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/unix_sockets_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/fake/fake_security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/fake/fake_security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/http/parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/http/parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_client.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from ./src/core/lib/event_engine/posix_engine/posix_endpoint.h:44,
+                       from src/core/lib/event_engine/posix_engine/posix_endpoint.cc:14:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/thread_local.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/thread_local.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/thread_pool/thread_count.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/thread_pool/thread_count.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/client_channel_factory.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/client_channel_factory.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/http_connect/http_proxy_mapper.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/http_connect/http_proxy_mapper.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/ares_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/ares_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/channel_stack.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/channel_stack.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/metadata.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/metadata.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/promise/activity.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/promise/activity.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/http/format_request.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/http/format_request.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/byte_buffer_reader.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/byte_buffer_reader.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/resolve_address_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/resolve_address_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/hpack_encoder.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/hpack_encoder.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/inproc/inproc_plugin.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/inproc/inproc_plugin.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/backend_metrics/backend_metric_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/backend_metrics/backend_metric_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/unix_sockets_posix_noop.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/unix_sockets_posix_noop.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/composite/composite_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/composite/composite_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/thread_pool/thread_pool_factory.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/thread_pool/thread_pool_factory.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/buffer_list.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/buffer_list.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_client_cfstream.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_client_cfstream.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/inproc/inproc_transport.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/inproc/inproc_transport.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_client_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_client_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/promise/party.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/promise/party.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from src/core/lib/event_engine/thread_pool/thread_pool_factory.cc:20:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/call.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/call.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from src/core/client_channel/client_channel_factory.cc:21:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from src/core/client_channel/client_channel_factory.cc:21:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/security_connector/fake/fake_security_connector.cc:57:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/security/security_handshaker.h:29,
+                       from src/core/lib/security/security_connector/fake/fake_security_connector.cc:42:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from src/core/lib/channel/channel_stack.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from src/core/lib/channel/channel_stack.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/vsock.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/vsock.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/posix_engine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/posix_engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/jwt/jwt_verifier.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/jwt/jwt_verifier.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/grpc_server_authz_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/grpc_server_authz_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/grpclb/grpclb.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/grpclb/grpclb.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/exec_ctx.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/exec_ctx.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/metadata_batch.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/metadata_batch.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/call_combiner.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/call_combiner.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/hpack_encoder.h:44,
+                       from src/core/ext/transport/chttp2/transport/hpack_encoder.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/hpack_encoder.h:44,
+                       from src/core/ext/transport/chttp2/transport/hpack_encoder.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/init_internally.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/init_internally.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/lame_client.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/lame_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/backend_metrics/backend_metric_filter.h:28,
+                       from src/core/ext/filters/backend_metrics/backend_metric_filter.cc:17:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/backend_metrics/backend_metric_filter.h:28,
+                       from src/core/ext/filters/backend_metrics/backend_metric_filter.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/composite/composite_credentials.h:40,
+                       from src/core/lib/security/credentials/composite/composite_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/composite/composite_credentials.h:40,
+                       from src/core/lib/security/credentials/composite/composite_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from ./src/core/lib/event_engine/posix_engine/posix_engine.h:38,
+                       from src/core/lib/event_engine/posix_engine/posix_engine.cc:14:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/promise/sleep.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/promise/sleep.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_client_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_client_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/wakeup_fd_eventfd.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/wakeup_fd_eventfd.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/executor.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/executor.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/client_channel_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/client_channel_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/lib/surface/call.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/lib/surface/call.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/cfstream_handle.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/cfstream_handle.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/thread_pool/thread_pool.h:25,
+                       from ./src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h:37,
+                       from src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc:18:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/inproc/inproc_transport.h:22,
+                       from src/core/ext/transport/inproc/inproc_transport.cc:15:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/inproc/inproc_transport.h:22,
+                       from src/core/ext/transport/inproc/inproc_transport.cc:15:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/channel_stack_builder.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/channel_stack_builder.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/cf_engine/cf_engine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/cf_engine/cf_engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/cf_engine/cfstream_endpoint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/closure.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/closure.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/cf_engine/dns_service_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/cf_engine/dns_service_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/channel_args_endpoint_config.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/channel_args_endpoint_config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/lib/security/authorization/grpc_server_authz_filter.h:25,
+                       from src/core/lib/security/authorization/grpc_server_authz_filter.cc:15:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/lib/security/authorization/grpc_server_authz_filter.h:25,
+                       from src/core/lib/security/authorization/grpc_server_authz_filter.cc:15:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/insecure/insecure_security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/insecure/insecure_security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/hpack_encoder_table.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/credentials/jwt/jwt_verifier.cc:70:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/credentials/jwt/jwt_verifier.cc:70:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/load_balancing/grpclb/grpclb.cc:97:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/load_balancing/grpclb/grpclb.cc:97:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/resolve_address_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/resolve_address_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/weighted_target/weighted_target.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/weighted_target/weighted_target.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/proxy_mapper_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/proxy_mapper_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/lib/surface/lame_client.h:33,
+                       from src/core/lib/surface/lame_client.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/lib/surface/lame_client.h:33,
+                       from src/core/lib/surface/lame_client.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/promise/trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/promise/trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/wakeup_fd_nospecial.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/wakeup_fd_nospecial.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/wakeup_fd_pipe.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/wakeup_fd_pipe.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/hpack_parse_result.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/hpack_parse_result.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/fork_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/fork_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/thready_event_engine/thready_event_engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/channel_stack_builder_impl.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/channel_stack_builder_impl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/metadata_info.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/metadata_info.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/api.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/api.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/combiner.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/combiner.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/default_event_engine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/default_event_engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/client_channel/client_channel_filter.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/client_channel/client_channel_filter.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/security/secure_endpoint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/security/secure_endpoint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/security_connector/insecure/insecure_security_connector.h:40,
+                       from src/core/lib/security/security_connector/insecure/insecure_security_connector.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/security_connector/insecure/insecure_security_connector.h:40,
+                       from src/core/lib/security/security_connector/insecure/insecure_security_connector.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/census/grpc_context.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/census/grpc_context.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/wakeup_fd_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/wakeup_fd_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/posix_engine_listener.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/posix_engine_listener.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/fork_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/fork_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/gethostname_fallback.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/gethostname_fallback.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/gethostname_host_name_max.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/gethostname_host_name_max.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/gethostname_sysconf.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/gethostname_sysconf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/grpc_if_nametoindex_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/grpc_if_nametoindex_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/dualstack_socket_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/dualstack_socket_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/weighted_target/weighted_target.cc:63:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/load_balancing/weighted_target/weighted_target.cc:46:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/gcp/metadata_query.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/gcp/metadata_query.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/time_util.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/time_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from src/core/lib/channel/channel_stack_builder_impl.cc:40:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from src/core/lib/channel/channel_stack_builder_impl.cc:40:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from src/core/lib/event_engine/posix_engine/posix_engine_listener.cc:43:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/server/xds_channel_stack_modifier.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/server/xds_channel_stack_modifier.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/credentials/credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/credentials/credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/local/local_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/local/local_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/matchers.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/matchers.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/inproc/legacy_inproc_transport.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/inproc/legacy_inproc_transport.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/endpoint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/endpoint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/legacy_channel.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/legacy_channel.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/hpack_parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/hpack_parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/ext/filters/census/grpc_context.cc:27:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from src/core/ext/filters/census/grpc_context.cc:24:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/parsed_metadata.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/parsed_metadata.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/arena.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/arena.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/handshaker/alts_tsi_handshaker.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/load_system_roots_fallback.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/load_system_roots_fallback.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/load_system_roots_supported.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/load_system_roots_supported.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/external/aws_external_account_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/external/aws_external_account_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_server.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_server.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/ext/gcp/metadata_query.cc:42:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/ext/gcp/metadata_query.cc:42:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/default_event_engine_factory.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/default_event_engine_factory.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/endpoint_cfstream.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/endpoint_cfstream.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/endpoint_pair_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/endpoint_pair_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/security/security_handshaker.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/security/security_handshaker.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from src/core/server/xds_channel_stack_modifier.cc:28:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from src/core/server/xds_channel_stack_modifier.cc:28:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/local/local_credentials.h:32,
+                       from src/core/lib/security/credentials/local/local_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/local/local_credentials.h:32,
+                       from src/core/lib/security/credentials/local/local_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/channel_idle/idle_filter_state.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/channel_idle/idle_filter_state.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/status_conversion.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/status_conversion.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/connection_quota.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/connection_quota.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from src/core/ext/transport/chttp2/transport/hpack_parser.cc:43:
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h: In instantiation of ‘void grpc_core::HuffDecoder<F>::Done0() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’:
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1603:9:   required from ‘bool grpc_core::HuffDecoder<F>::Run() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:360:53:   required from ‘static grpc_core::HpackParseStatus grpc_core::HPackParser::String::ParseHuff(grpc_core::HPackParser::Input*, uint32_t, Out) [with Out = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>; uint32_t = unsigned int]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:501:18:   required from here
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1880:52: warning: comparison of integer expressions of different signedness: ‘uint64_t’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
+       1880 |         ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
+            |               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h: In instantiation of ‘void grpc_core::HuffDecoder<F>::Done0() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’:
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1603:9:   required from ‘bool grpc_core::HuffDecoder<F>::Run() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:360:53:   required from ‘static grpc_core::HpackParseStatus grpc_core::HPackParser::String::ParseHuff(grpc_core::HPackParser::Input*, uint32_t, Out) [with Out = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>; uint32_t = unsigned int]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:527:25:   required from here
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1880:52: warning: comparison of integer expressions of different signedness: ‘uint64_t’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from ./src/core/lib/surface/legacy_channel.h:31,
+                       from src/core/lib/surface/legacy_channel.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h: In instantiation of ‘void grpc_core::HuffDecoder<F>::Done1() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’:
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2065:7:   required from ‘void grpc_core::HuffDecoder<F>::DecodeStep0() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1628:11:   required from ‘bool grpc_core::HuffDecoder<F>::Run() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:360:53:   required from ‘static grpc_core::HpackParseStatus grpc_core::HPackParser::String::ParseHuff(grpc_core::HPackParser::Input*, uint32_t, Out) [with Out = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>; uint32_t = unsigned int]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:501:18:   required from here
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2221:52: warning: comparison of integer expressions of different signedness: ‘uint64_t’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
+       2221 |         ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
+            |               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from ./src/core/lib/surface/legacy_channel.h:31,
+                       from src/core/lib/surface/legacy_channel.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h: In instantiation of ‘void grpc_core::HuffDecoder<F>::Done1() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’:
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2065:7:   required from ‘void grpc_core::HuffDecoder<F>::DecodeStep0() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1628:11:   required from ‘bool grpc_core::HuffDecoder<F>::Run() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:360:53:   required from ‘static grpc_core::HpackParseStatus grpc_core::HPackParser::String::ParseHuff(grpc_core::HPackParser::Input*, uint32_t, Out) [with Out = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>; uint32_t = unsigned int]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:527:25:   required from here
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2221:52: warning: comparison of integer expressions of different signedness: ‘uint64_t’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/tcp_server_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/tcp_server_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h: In instantiation of ‘void grpc_core::HuffDecoder<F>::Done21() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’:
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2701:7:   required from ‘void grpc_core::HuffDecoder<F>::DecodeStep20() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2155:9:   required from ‘void grpc_core::HuffDecoder<F>::DecodeStep0() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1628:11:   required from ‘bool grpc_core::HuffDecoder<F>::Run() [with F = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:360:53:   required from ‘static grpc_core::HpackParseStatus grpc_core::HPackParser::String::ParseHuff(grpc_core::HPackParser::Input*, uint32_t, Out) [with Out = grpc_core::HPackParser::String::Parse(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>; uint32_t = unsigned int]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:501:18:   required from here
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2746:52: warning: comparison of integer expressions of different signedness: ‘uint64_t’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
+       2746 |         ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
+            |               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h: In instantiation of ‘void grpc_core::HuffDecoder<F>::Done21() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’:
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2701:7:   required from ‘void grpc_core::HuffDecoder<F>::DecodeStep20() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2155:9:   required from ‘void grpc_core::HuffDecoder<F>::DecodeStep0() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:1628:11:   required from ‘bool grpc_core::HuffDecoder<F>::Run() [with F = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:360:53:   required from ‘static grpc_core::HpackParseStatus grpc_core::HPackParser::String::ParseHuff(grpc_core::HPackParser::Input*, uint32_t, Out) [with Out = grpc_core::HPackParser::String::ParseBinary(grpc_core::HPackParser::Input*, bool, size_t)::<lambda(uint8_t)>; uint32_t = unsigned int]’
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:527:25:   required from here
+      ./src/core/ext/transport/chttp2/transport/decode_huff.h:2746:52: warning: comparison of integer expressions of different signedness: ‘uint64_t’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/load_system_roots_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/load_system_roots_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/local/local_security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/local/local_security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from src/core/ext/transport/inproc/legacy_inproc_transport.cc:68:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/ext/transport/inproc/legacy_inproc_transport.cc:49:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from ./src/core/lib/event_engine/posix_engine/posix_engine.h:38,
+                       from src/core/lib/event_engine/default_event_engine_factory.cc:47:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/alpn/alpn.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/alpn/alpn.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/channel_stack_trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/channel_stack_trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/tcp_socket_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/transport_security.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/transport_security.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from ./src/core/lib/security/credentials/external/aws_external_account_credentials.h:35,
+                       from src/core/lib/security/credentials/external/aws_external_account_credentials.cc:16:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from ./src/core/lib/security/credentials/external/aws_external_account_credentials.h:35,
+                       from src/core/lib/security/credentials/external/aws_external_account_credentials.cc:16:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/oauth2/oauth2_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/oauth2/oauth2_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/timeout_encoding.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/timeout_encoding.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/handshaker/alts_tsi_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/handshaker/alts_tsi_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/rbac_policy.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/rbac_policy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/connected_channel.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/connected_channel.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/client/chttp2_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/client/chttp2_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/xds/cds.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/xds/cds.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/transport_security_grpc.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/transport_security_grpc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/memory_quota.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/memory_quota.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/event_engine/service_config_helper.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/event_engine/service_config_helper.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc: In member function ‘void grpc_core::HPackParser::Parser::LogHeader(const grpc_core::HPackTable::Memento&)’:
+      src/core/ext/transport/chttp2/transport/hpack_parser.cc:705:12: warning: ‘type’ may be used uninitialized in this function [-Wmaybe-uninitialized]
+        705 |     gpr_log(
+            |     ~~~~~~~^
+        706 |         GPR_DEBUG, "HTTP:%d:%s:%s: %s%s", log_info_.stream_id, type,
+            |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+        707 |         log_info_.is_client ? "CLI" : "SVR", memento.md.DebugString().c_str(),
+            |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+        708 |         memento.parse_status == nullptr
+            |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+        709 |             ? ""
+            |             ~~~~
+        710 |             : absl::StrCat(" (parse error: ",
+            |             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+        711 |                            memento.parse_status->Materialize().ToString(), ")")
+            |                            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+        712 |                   .c_str());
+            |                   ~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/certificate_provider_store.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/certificate_provider_store.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h:30,
+                       from src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc:20:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h:30,
+                       from src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc:20:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/handshaker/security/security_handshaker.cc:66:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/security/security_handshaker.h:29,
+                       from src/core/handshaker/security/security_handshaker.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/server/xds_server_config_fetcher.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/server/xds_server_config_fetcher.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/handshaker/transport_security_common_api.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/handshaker/transport_security_common_api.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/grpclb/grpclb_balancer_addresses.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/event_poller.h:26,
+                       from ./src/core/lib/event_engine/posix_engine/posix_endpoint.h:44,
+                       from src/core/lib/iomgr/tcp_server_posix.cc:61:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      In file included from src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc:49:
+      ./src/core/lib/promise/loop.h: At global scope:
+      ./src/core/lib/promise/loop.h:127:31: warning: attribute ignored in declaration of ‘union grpc_core::promise_detail::Loop<F>::<unnamed>’ [-Wattributes]
+        127 |   GPR_NO_UNIQUE_ADDRESS union {
+            |                               ^
+      ./src/core/lib/promise/loop.h:127:31: note: attribute for ‘union grpc_core::promise_detail::Loop<F>::<unnamed>’ must follow the ‘union’ keyword
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/transport.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/transport.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from src/core/lib/resource_quota/memory_quota.cc:40:
+      ./src/core/lib/promise/loop.h:127:31: warning: attribute ignored in declaration of ‘union grpc_core::promise_detail::Loop<F>::<unnamed>’ [-Wattributes]
+        127 |   GPR_NO_UNIQUE_ADDRESS union {
+            |                               ^
+      ./src/core/lib/promise/loop.h:127:31: note: attribute for ‘union grpc_core::promise_detail::Loop<F>::<unnamed>’ must follow the ‘union’ keyword
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/lib/security/security_connector/local/local_security_connector.cc:40:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/lib/security/security_connector/local/local_security_connector.cc:40:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/timer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/timer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from third_party/abseil-cpp/absl/functional/any_invocable.h:42,
+                       from ./src/core/lib/surface/call.h:25,
+                       from src/core/lib/surface/call.cc:19:
+      In destructor ‘absl::lts_20240116::internal_any_invocable::CoreImpl<SigIsNoexcept, ReturnType, P>::~CoreImpl() [with bool SigIsNoexcept = false; ReturnType = grpc_core::Poll<bool>; P = {}]’,
+          inlined from ‘absl::lts_20240116::internal_any_invocable::Impl<grpc_core::Poll<bool>()>::~Impl()’ at third_party/abseil-cpp/absl/functional/internal/any_invocable.h:868:1,
+          inlined from ‘absl::lts_20240116::AnyInvocable<Sig>::~AnyInvocable() [with Sig = grpc_core::Poll<bool>()]’ at third_party/abseil-cpp/absl/functional/any_invocable.h:262:3,
+          inlined from ‘grpc_core::promise_detail::PromiseLike<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, void>::~PromiseLike()’ at ./src/core/lib/promise/detail/promise_like.h:73:7,
+          inlined from ‘grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >::~Map()’ at ./src/core/lib/promise/map.h:36:7,
+          inlined from ‘grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void>::~PromiseLike()’ at ./src/core/lib/promise/detail/promise_like.h:73:7,
+          inlined from ‘void absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<T>::Destroyer::operator()(absl::lts_20240116::variant_internal::SizeT<NewIndex>) const [with long unsigned int I = 2; T = {grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void>}]’ at third_party/abseil-cpp/absl/types/internal/variant.h:1291:66,
+          inlined from ‘static decltype (declval<F>()((declval<Args>)()...)) absl::lts_20240116::base_internal::Callable::Invoke(F&&, Args&& ...) [with F = absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void> >::Destroyer; Args = {std::integral_constant<long unsigned int, 2>}]’ at third_party/abseil-cpp/absl/base/internal/invoke.h:185:30,
+          inlined from ‘absl::lts_20240116::base_internal::invoke_result_t<F, Args ...> absl::lts_20240116::base_internal::invoke(F&&, Args&& ...) [with F = absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void> >::Destroyer; Args = {std::integral_constant<long unsigned int, 2>}]’ at third_party/abseil-cpp/absl/base/internal/invoke.h:212:43,
+          inlined from ‘static absl::lts_20240116::variant_internal::VisitIndicesResultT<Op, long unsigned int> absl::lts_20240116::variant_internal::ReachableSwitchCase<Op, I>::Run(Op&&) [with Op = absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void> >::Destroyer; long unsigned int I = 2]’ at third_party/abseil-cpp/absl/types/internal/variant.h:295:39,
+          inlined from ‘static absl::lts_20240116::variant_internal::VisitIndicesResultT<Op, long unsigned int> absl::lts_20240116::variant_internal::VisitIndicesSwitch<EndIndex>::Run(Op&&, std::size_t) [with Op = absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void> >::Destroyer; long unsigned int EndIndex = 3]’ at third_party/abseil-cpp/absl/types/internal/variant.h:364:46,
+          inlined from ‘void absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<T>::destroy() [with T = {grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void>}]’ at third_party/abseil-cpp/absl/types/internal/variant.h:1301:51,
+          inlined from ‘absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<T>::~VariantStateBaseDestructorNontrivial() [with T = {grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void>}]’ at third_party/abseil-cpp/absl/types/internal/variant.h:1303:52,
+          inlined from ‘absl::lts_20240116::variant_internal::VariantMoveBaseNontrivial<grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void> >::~VariantMoveBaseNontrivial()’ at third_party/abseil-cpp/absl/types/internal/variant.h:1311:7,
+          inlined from ‘absl::lts_20240116::variant<T0, Ts ...>::~variant() [with T0 = grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::Dismissed; Tn = {grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()> >, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)>::<lambda()>::<lambda(bool)> >, void>}]’ at third_party/abseil-cpp/absl/types/variant.h:569:3,
+          inlined from ‘grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >::~MaybeOpImpl()’ at src/core/lib/surface/call.cc:3720:7,
+          inlined from ‘void grpc_core::Construct(T*, Args&& ...) [with T = grpc_core::promise_detail::OncePromiseFactory<grpc_core::StatusFlag, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >; Args = {grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >}]’ at ./src/core/lib/gprpp/construct_destruct.h:35:3,
+          inlined from ‘grpc_core::promise_detail::SeqState<Traits, P, F0, F1>::SeqState(P&&, F0&&, F1&&, grpc_core::DebugLocation) [with Traits = grpc_core::promise_detail::SeqTraits; P = grpc_core::promise_detail::AllOk<grpc_core::StatusFlag, grpc_core::promise_detail::TrySeq<grpc_core::promise_detail::AllOk<grpc_core::StatusFlag, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >; F0 = grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >; F1 = grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()> mutable::<lambda(grpc_core::StatusFlag)>]’ at ./src/core/lib/promise/detail/seq_state.h:236:14,
+          inlined from ‘grpc_core::promise_detail::Seq<P, Fs>::Seq(P&&, Fs&& ..., grpc_core::DebugLocation) [with P = grpc_core::promise_detail::AllOk<grpc_core::StatusFlag, grpc_core::promise_detail::TrySeq<grpc_core::promise_detail::AllOk<grpc_core::StatusFlag, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >; Fs = {grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()> mutable::<lambda(grpc_core::StatusFlag)>}]’ at ./src/core/lib/promise/seq.h:63:9,
+          inlined from ‘grpc_core::promise_detail::Seq<F0, F1, F2> grpc_core::Seq(F0, F1, F2, grpc_core::DebugLocation) [with F0 = grpc_core::promise_detail::AllOk<grpc_core::StatusFlag, grpc_core::promise_detail::TrySeq<grpc_core::promise_detail::AllOk<grpc_core::StatusFlag, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >, grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> > >; F1 = grpc_core::{anonymous}::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda(const grpc_op&)> >; F2 = grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()> mutable::<lambda(grpc_core::StatusFlag)>]’ at ./src/core/lib/promise/seq.h:114:63,
+          inlined from ‘grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()> mutable’ at src/core/lib/surface/call.cc:4001:18,
+          inlined from ‘absl::lts_20240116::enable_if_t<grpc_core::promise_detail::IsVoidCallable<typename grpc_core::promise_detail::ResultOfT<F(), void>::T>::value, grpc_core::promise_detail::PromiseLike<decltype (declval<F>()())> > grpc_core::promise_detail::PromiseFactoryImpl(F&&) [with F = grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()>]’ at ./src/core/lib/promise/detail/promise_factory.h:171:12,
+          inlined from ‘grpc_core::promise_detail::OncePromiseFactory<void, F>::Promise grpc_core::promise_detail::OncePromiseFactory<void, F>::Make() [with F = grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()>]’ at ./src/core/lib/promise/detail/promise_factory.h:202:59,
+          inlined from ‘bool grpc_core::Party::ParticipantImpl<SuppliedFactory, OnComplete>::PollParticipantPromise() [with SuppliedFactory = grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()>; OnComplete = grpc_core::CallSpineInterface::SpawnInfallible<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()> >(absl::lts_20240116::string_view, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()>)::<lambda(grpc_core::Empty)>]’ at ./src/core/lib/promise/party.h:486:14:
+      third_party/abseil-cpp/absl/functional/internal/any_invocable.h:508:17: warning: ‘*(absl::lts_20240116::internal_any_invocable::CoreImpl<false, grpc_core::Poll<bool> >*)((char*)&<unnamed> + offsetof(grpc_core::<unnamed>::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch::._anon_501>,grpc_core::<unnamed>::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch::._anon_501>::state_.absl::lts_20240116::variant<grpc_core::<unnamed>::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch::._anon_501>::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502>, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502::operator()::._anon_503>, void> >::<unnamed>.absl::lts_20240116::variant_internal::VariantMoveBaseNontrivial<grpc_core::<unnamed>::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch::._anon_501>::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502>, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502::operator()::._anon_503>, void> >::<unnamed>.absl::lts_20240116::variant_internal::VariantStateBaseDestructorNontrivial<grpc_core::<unnamed>::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch::._anon_501>::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502>, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502::operator()::._anon_503>, void> >::<unnamed>.absl::lts_20240116::variant_internal::VariantStateBase<grpc_core::<unnamed>::MaybeOpImpl<grpc_core::ServerCallSpine::CommitBatch::._anon_501>::Dismissed, grpc_core::promise_detail::OncePromiseFactory<void, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502>, grpc_core::promise_detail::PromiseLike<grpc_core::promise_detail::Map<absl::lts_20240116::AnyInvocable<grpc_core::Poll<bool>()>, grpc_core::ServerCallSpine::CommitBatch::._anon_501::operator()::._anon_502::operator()::._anon_503>, void> >::state_)).absl::lts_20240116::internal_any_invocable::CoreImpl<false, grpc_core::Poll<bool> >::manager_’ may be used uninitialized [-Wmaybe-uninitialized]
+        508 |   ~CoreImpl() { manager_(FunctionToCall::dispose, &state_, &state_); }
+            |                 ^~~~~~~~
+      In file included from ./src/core/lib/resource_quota/arena.h:39,
+                       from ./src/core/lib/channel/call_tracer.h:37,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/lib/channel/channel_stack.h:63,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/lib/surface/call.cc:19:
+      ./src/core/lib/gprpp/construct_destruct.h: In member function ‘bool grpc_core::Party::ParticipantImpl<SuppliedFactory, OnComplete>::PollParticipantPromise() [with SuppliedFactory = grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()>; OnComplete = grpc_core::CallSpineInterface::SpawnInfallible<grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()> >(absl::lts_20240116::string_view, grpc_core::ServerCallSpine::CommitBatch(const grpc_op*, size_t, void*, bool)::<lambda()>)::<lambda(grpc_core::Empty)>]’:
+      ./src/core/lib/gprpp/construct_destruct.h:35:3: note: ‘<anonymous>’ declared here
+         35 |   new (p) T(std::forward<Args>(args)...);
+            |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from src/core/lib/security/credentials/oauth2/oauth2_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from src/core/lib/security/credentials/oauth2/oauth2_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/endpoint_pair_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/endpoint_pair_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/connected_channel.h:25,
+                       from src/core/lib/channel/connected_channel.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/connected_channel.h:25,
+                       from src/core/lib/channel/connected_channel.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/error.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/error.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/ext/transport/chttp2/client/chttp2_connector.h:28,
+                       from src/core/ext/transport/chttp2/client/chttp2_connector.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/ext/transport/chttp2/client/chttp2_connector.h:28,
+                       from src/core/ext/transport/chttp2/client/chttp2_connector.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from src/core/lib/channel/connected_channel.cc:63:
+      ./src/core/lib/promise/loop.h: At global scope:
+      ./src/core/lib/promise/loop.h:127:31: warning: attribute ignored in declaration of ‘union grpc_core::promise_detail::Loop<F>::<unnamed>’ [-Wattributes]
+        127 |   GPR_NO_UNIQUE_ADDRESS union {
+            |                               ^
+      ./src/core/lib/promise/loop.h:127:31: note: attribute for ‘union grpc_core::promise_detail::Loop<F>::<unnamed>’ must follow the ‘union’ keyword
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/xds/cds.cc:57:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/load_balancing/xds/cds.cc:41:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/metadata_array.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/metadata_array.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/grpclb/grpclb_client_stats.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/grpclb/grpclb_client_stats.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/authorization/stdout_logger.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/authorization/stdout_logger.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/native/dns_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/native/dns_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      src/core/lib/channel/connected_channel.cc: In instantiation of ‘grpc_channel_filter grpc_core::{anonymous}::MakeConnectedFilter() [with grpc_core::ArenaPromise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > (* make_call_promise)(grpc_core::Transport*, grpc_core::CallArgs, grpc_core::NextPromiseFactory) = grpc_core::{anonymous}::MakeClientTransportCallPromise; grpc_channel_filter = grpc_channel_filter]’:
+      src/core/lib/channel/connected_channel.cc:892:56:   required from here
+      src/core/lib/channel/connected_channel.cc:856:25: warning: the address of ‘grpc_core::ArenaPromise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > grpc_core::{anonymous}::MakeClientTransportCallPromise(grpc_core::Transport*, grpc_core::CallArgs, grpc_core::NextPromiseFactory)’ will never be NULL [-Waddress]
+        856 |       make_call_promise != nullptr ? make_call_wrapper : nullptr,
+            |       ~~~~~~~~~~~~~~~~~~^~~~~~~~~~
+      src/core/lib/channel/connected_channel.cc: In instantiation of ‘grpc_channel_filter grpc_core::{anonymous}::MakeConnectedFilter() [with grpc_core::ArenaPromise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > (* make_call_promise)(grpc_core::Transport*, grpc_core::CallArgs, grpc_core::NextPromiseFactory) = grpc_core::{anonymous}::MakeClientCallPromise; grpc_channel_filter = grpc_channel_filter]’:
+      src/core/lib/channel/connected_channel.cc:896:47:   required from here
+      src/core/lib/channel/connected_channel.cc:856:25: warning: the address of ‘grpc_core::ArenaPromise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > grpc_core::{anonymous}::MakeClientCallPromise(grpc_core::Transport*, grpc_core::CallArgs, grpc_core::NextPromiseFactory)’ will never be NULL [-Waddress]
+      src/core/lib/channel/connected_channel.cc: In instantiation of ‘grpc_channel_filter grpc_core::{anonymous}::MakeConnectedFilter() [with grpc_core::ArenaPromise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > (* make_call_promise)(grpc_core::Transport*, grpc_core::CallArgs, grpc_core::NextPromiseFactory) = grpc_core::{anonymous}::MakeServerCallPromise; grpc_channel_filter = grpc_channel_filter]’:
+      src/core/lib/channel/connected_channel.cc:904:47:   required from here
+      src/core/lib/channel/connected_channel.cc:856:25: warning: the address of ‘grpc_core::ArenaPromise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > grpc_core::{anonymous}::MakeServerCallPromise(grpc_core::Transport*, grpc_core::CallArgs, grpc_core::NextPromiseFactory)’ will never be NULL [-Waddress]
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/validate_metadata.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/validate_metadata.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/timer_heap.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/timer_heap.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/hpack_parser_table.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/hpack_parser_table.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from src/core/lib/transport/transport.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from src/core/lib/transport/transport.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/grpclb/load_balancer_api.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/grpclb/load_balancer_api.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/error_cfstream.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/error_cfstream.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/iomgr/ev_apple.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/iomgr/ev_apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_http_stateful_session_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_http_stateful_session_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/security/tsi_error.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/security/tsi_error.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/periodic_update.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/periodic_update.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/server/xds_server_config_fetcher.cc:69:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/server/xds_server_config_fetcher.cc:55:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/event_engine/posix_engine/timer_manager.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/event_engine/posix_engine/timer_manager.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/external/aws_request_signer.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/external/aws_request_signer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/certificate_provider/certificate_provider_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/certificate_provider/certificate_provider_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/version.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/version.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/wait_for_cq_end_op.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/wait_for_cq_end_op.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/call_details.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/call_details.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/strerror.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/strerror.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/handshaker/tcp_connect/tcp_connect_handshaker.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/event_engine/posix_engine/timer_manager.h:33,
+                       from src/core/lib/event_engine/posix_engine/timer_manager.cc:19:
+      ./src/core/lib/event_engine/forkable.h:73:34: warning: ‘unused’ attribute ignored [-Wattributes]
+         73 |   GRPC_UNUSED bool registered_ = false;
+            |                                  ^~~~~
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/resource_quota.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/resource_quota.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/sysinfo.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/sysinfo.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/health_check_client.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/health_check_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/hash/internal/city.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal/city.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/file_watcher_certificate_provider_factory.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/file_watcher_certificate_provider_factory.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/fault_injection/fault_injection_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/fault_injection/fault_injection_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/server/chttp2_server.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/server/chttp2_server.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/transport_op_string.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/transport_op_string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/thread_identity.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/thread_identity.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/batch_builder.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/batch_builder.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/hash/internal/hash.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal/hash.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/context/security_context.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/context/security_context.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/call_log_batch.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/call_log_batch.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/security_connector/security_connector.cc:33:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/security_connector/security_connector.cc:33:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/demangle.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/demangle.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/external/external_account_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/external/external_account_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/fake_transport_security.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/fake_transport_security.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/stateful_session/stateful_session_filter.h:32,
+                       from src/core/xds/grpc/xds_http_stateful_session_filter.cc:35:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h:32,
+                       from ./src/core/ext/filters/stateful_session/stateful_session_filter.h:29,
+                       from src/core/xds/grpc/xds_http_stateful_session_filter.cc:35:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal/low_level_hash.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/throw_delegate.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/throw_delegate.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/resource_quota/thread_quota.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/resource_quota/thread_quota.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/plugin/plugin_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/plugin/plugin_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/globals.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/globals.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/log_severity.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/log_severity.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/http2_settings.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/http2_settings.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/endpoint_addresses.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/endpoint_addresses.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/local_transport_security.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/local_transport_security.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/ssl/ssl_security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/ssl/ssl_security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/client_channel_plugin.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/client_channel_plugin.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/numeric/int128.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/numeric/int128.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/load_balancing/health_check_client.cc:45:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/client_channel/client_channel_internal.h:29,
+                       from src/core/load_balancing/health_check_client.cc:44:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from src/core/lib/transport/transport_op_string.cc:34:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from src/core/lib/transport/transport_op_string.cc:34:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/check_op.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/check_op.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/server/server.h:51,
+                       from ./src/core/ext/transport/chttp2/server/chttp2_server.h:28,
+                       from src/core/ext/transport/chttp2/server/chttp2_server.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/server/server.h:48,
+                       from ./src/core/ext/transport/chttp2/server/chttp2_server.h:28,
+                       from src/core/ext/transport/chttp2/server/chttp2_server.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/fault_injection/fault_injection_filter.h:32,
+                       from src/core/ext/filters/fault_injection/fault_injection_filter.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/fault_injection/fault_injection_filter.h:32,
+                       from src/core/ext/filters/fault_injection/fault_injection_filter.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/transport/batch_builder.h:34,
+                       from src/core/lib/transport/batch_builder.cc:15:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/transport/batch_builder.h:34,
+                       from src/core/lib/transport/batch_builder.cc:15:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/lib/surface/call_log_batch.cc:37:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/lib/surface/call_log_batch.cc:37:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/context/security_context.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/context/security_context.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/examine_stack.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/address_utils/parse_address.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/address_utils/parse_address.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from src/core/lib/security/credentials/external/external_account_credentials.cc:16:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from src/core/lib/security/credentials/external/external_account_credentials.cc:16:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal/raw_hash_set.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/conditions.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/conditions.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/vdso_support.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/discrete_distribution.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/discrete_distribution.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/ssl/key_logging/ssl_key_logging.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl/key_logging/ssl_key_logging.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/http_trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/http_trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/fnmatch.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/fnmatch.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/fake/fake_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/fake/fake_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/stacktrace.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/stacktrace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/call_creds_util.h:26,
+                       from ./src/core/lib/security/credentials/plugin/plugin_credentials.h:46,
+                       from src/core/lib/security/credentials/plugin/plugin_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/call_creds_util.h:26,
+                       from ./src/core/lib/security/credentials/plugin/plugin_credentials.h:46,
+                       from src/core/lib/security/credentials/plugin/plugin_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/symbolize.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/symbolize.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/huffsyms.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/huffsyms.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/globals.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/globals.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/gaussian_distribution.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/gaussian_distribution.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_lb_policy_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_lb_policy_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/client_channel/client_channel_plugin.cc:25:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/client_channel/client_channel_plugin.cc:25:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/channel.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/channel.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/crc32c.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/crc32c.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/internal/pool_urbg.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal/pool_urbg.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/log_format.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/log_format.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/metrics.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/metrics.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/security_connector/ssl/ssl_security_connector.cc:51:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/security/security_handshaker.h:29,
+                       from src/core/lib/security/security_connector/ssl/ssl_security_connector.cc:38:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/parsing.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/parsing.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/address_utils/sockaddr_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/address_utils/sockaddr_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/commandlineflag.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/commandlineflag.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_audit_logger_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_audit_logger_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/cpu_detect.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/uri/uri_parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/uri/uri_parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl/session_cache/ssl_session_boringssl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/alts_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/alts_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/internal/commandlineflag.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/log_message.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/log_message.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/internal/flag.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/internal/flag.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/internal/randen.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal/randen.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/bdp_estimator.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/bdp_estimator.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/internal/randen_detect.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal/randen_detect.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal/randen_hwaes.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/xds/xds_cluster_impl.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/xds/xds_cluster_impl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/lb_policy.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/lb_policy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal/randen_round_keys.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/internal/randen_slow.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal/randen_slow.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/ssl/session_cache/ssl_session_cache.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl/session_cache/ssl_session_cache.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/log_sink_set.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/log_sink_set.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/statusor.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/statusor.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/internal/seed_material.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/internal/seed_material.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/call_arena_allocator.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/call_arena_allocator.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/channel_create.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/channel_create.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/ssl/ssl_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/ssl/ssl_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/internal/program_name.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/internal/program_name.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/client_channel_service_config.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/client_channel_service_config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/seed_gen_exception.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/seed_gen_exception.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/bin_decoder.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/bin_decoder.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_data.h:35,
+                       from src/core/ext/transport/chttp2/transport/parsing.cc:47:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_data.h:35,
+                       from src/core/ext/transport/chttp2/transport/parsing.cc:47:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/nullguard.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/nullguard.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/address_filtering.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/address_filtering.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/proto.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/proto.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/ssl_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/ssl_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/promise_based_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/promise_based_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/alts/alts_credentials.h:31,
+                       from src/core/lib/security/credentials/alts/alts_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/alts/alts_credentials.h:31,
+                       from src/core/lib/security/credentials/alts/alts_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/ascii.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/ascii.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/external/file_external_account_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/external/file_external_account_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_bootstrap_grpc.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_bootstrap_grpc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/random/seed_sequences.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/random/seed_sequences.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/marshalling.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/marshalling.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/ssl/session_cache/ssl_session_openssl.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl/session_cache/ssl_session_openssl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/service_config/service_config_channel_arg_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/service_config/service_config_channel_arg_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/vlog_config.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/vlog_config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/call_filters.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/call_filters.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/charconv.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/charconv.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/bin_encoder.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/bin_encoder.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/internal/status_internal.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/internal/status_internal.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/google_c2p/google_c2p_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/google_c2p/google_c2p_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/lb_policy_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/lb_policy_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/xds/xds_credentials.h:40,
+                       from src/core/load_balancing/xds/xds_cluster_impl.cc:58:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/client_channel/client_channel_internal.h:29,
+                       from src/core/load_balancing/xds/xds_cluster_impl.cc:40:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/ssl/ssl_credentials.h:36,
+                       from src/core/lib/security/credentials/ssl/ssl_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/ssl/ssl_credentials.h:36,
+                       from src/core/lib/security/credentials/ssl/ssl_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/check_gcp_environment.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/check_gcp_environment.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/check_gcp_environment_linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/ssl_transport_security.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl_transport_security.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/reflection.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/reflection.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/cord.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/cord.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/alts/check_gcp_environment_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cordz_handle.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/chttp2_transport.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/chttp2_transport.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/log_entry.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/log_entry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/lib/surface/lame_client.h:33,
+                       from src/core/lib/surface/channel_create.cc:30:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/lib/surface/channel_create.cc:26:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/backend_metric_parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/backend_metric_parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/str_cat.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/str_cat.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from src/core/lib/channel/promise_based_filter.cc:15:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from src/core/lib/channel/promise_based_filter.cc:15:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/security_connector/ssl_utils.cc:50:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/security_connector/ssl_utils.cc:50:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from ./src/core/lib/security/credentials/external/file_external_account_credentials.h:30,
+                       from src/core/lib/security/credentials/external/file_external_account_credentials.cc:16:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from ./src/core/lib/security/credentials/external/file_external_account_credentials.h:30,
+                       from src/core/lib/security/credentials/external/file_external_account_credentials.cc:16:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/log_sink.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/log_sink.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cordz_info.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cordz_info.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/status.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/status.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/child_policy_handler.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/child_policy_handler.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/message_size/message_size_filter.h:34,
+                       from src/core/service_config/service_config_channel_arg_filter.cc:33:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/ext/filters/message_size/message_size_filter.h:33,
+                       from src/core/service_config/service_config_channel_arg_filter.cc:33:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/str_replace.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/str_replace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_listener.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_listener.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/ping_abuse_policy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/mutex.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/mutex.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/str_split.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/str_split.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/config_selector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/config_selector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/flags/usage_config.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/flags/usage_config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/security_connector/tls/tls_security_connector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/security_connector/tls/tls_security_connector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/string_view.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/string_view.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/chttp2_transport.h:41,
+                       from src/core/ext/transport/chttp2/transport/chttp2_transport.cc:17:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/ext/transport/chttp2/transport/chttp2_transport.h:32,
+                       from src/core/ext/transport/chttp2/transport/chttp2_transport.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/status_payload_printer.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/status_payload_printer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/notification.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/notification.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/escaping.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/escaping.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/ssl_transport_security_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/ssl_transport_security_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/ping_callbacks.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/ping_callbacks.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/oob_backend_metric.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/oob_backend_metric.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/substitute.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/substitute.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/external/url_external_account_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/external/url_external_account_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/memutil.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/memutil.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/channel_init.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/channel_init.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/civil_time.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/civil_time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/child_policy_handler.cc:37:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/child_policy_handler.h:30,
+                       from src/core/load_balancing/child_policy_handler.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/cord_analysis.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/cord_analysis.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/http/client/http_client_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/client/http_client_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/time.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/call_final_info.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/call_final_info.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/call_spine.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/call_spine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/barrier.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/barrier.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/ostringstream.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/ostringstream.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/arg.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/cord_buffer.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/cord_buffer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/blocking_counter.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/blocking_counter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/types/bad_optional_access.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/types/bad_optional_access.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/clock.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/clock.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/base64/base64.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/base64/base64.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/service_config/service_config_impl.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/service_config/service_config_impl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/escaping.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/escaping.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/types/bad_variant_access.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/types/bad_variant_access.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/bio.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/bio.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/ping_rate_policy.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/ping_rate_policy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/context/security_context.h:41,
+                       from src/core/lib/security/security_connector/tls/tls_security_connector.cc:46:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/security/security_handshaker.h:29,
+                       from src/core/lib/security/security_connector/tls/tls_security_connector.cc:39:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/dynamic_filters.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/dynamic_filters.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/duration.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/duration.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/load_balancing/oob_backend_metric.cc:42:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/load_balancing/oob_backend_metric.cc:42:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from ./src/core/lib/security/credentials/external/url_external_account_credentials.h:33,
+                       from src/core/lib/security/credentials/external/url_external_account_credentials.cc:16:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:49,
+                       from ./src/core/lib/security/credentials/external/external_account_credentials.h:39,
+                       from ./src/core/lib/security/credentials/external/url_external_account_credentials.h:33,
+                       from src/core/lib/security/credentials/external/url_external_account_credentials.cc:16:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/address_sorting/address_sorting.c -o pyb/temp.linux-x86_64-cpython-313/third_party/address_sorting/address_sorting.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/connect.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/connect.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/address_sorting/address_sorting_posix.c -o pyb/temp.linux-x86_64-cpython-313/third_party/address_sorting/address_sorting_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/errno.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/errno.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/bind.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/address_sorting/address_sorting_windows.c -o pyb/temp.linux-x86_64-cpython-313/third_party/address_sorting/address_sorting_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/fd.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/fd.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from src/core/lib/transport/call_spine.cc:15:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/call_spine.h:23,
+                       from src/core/lib/transport/call_spine.cc:15:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/client/http_client_filter.h:27,
+                       from src/core/ext/filters/http/client/http_client_filter.cc:20:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/client/http_client_filter.h:27,
+                       from src/core/ext/filters/http/client/http_client_filter.cc:20:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/file.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/file.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/endpoint_list.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/endpoint_list.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/hexdump.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/buf/buf.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/buf/buf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/format.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/format.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/pair.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/pair.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/printf.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/printf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/socket.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/socket.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/call_spine.h:27,
+                       from src/core/lib/transport/call_spine.cc:15:
+      ./src/core/lib/promise/party.h: In member function ‘bool grpc_core::Party::PromiseParticipantImpl<SuppliedFactory>::PollParticipantPromise() [with SuppliedFactory = grpc_core::ForwardCall(grpc_core::CallHandler, grpc_core::CallInitiator)::<lambda()> mutable::<lambda(grpc_core::MessageHandle)> mutable::<lambda()>]’:
+      ./src/core/lib/promise/party.h:567:5: warning: control reaches end of non-void function [-Wreturn-type]
+        567 |     }
+            |     ^
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      ./src/core/lib/promise/party.h: In member function ‘grpc_core::Poll<typename grpc_core::promise_detail::OncePromiseFactory<void, F>::Promise::Result> grpc_core::Party::PromiseParticipantImpl<SuppliedFactory>::PollCompletion() [with SuppliedFactory = grpc_core::ForwardCall(grpc_core::CallHandler, grpc_core::CallInitiator)::<lambda()> mutable::<lambda(grpc_core::MessageHandle)> mutable::<lambda()>]’:
+      ./src/core/lib/promise/party.h:579:5: warning: control reaches end of non-void function [-Wreturn-type]
+        579 |     }
+            |     ^
+      ./src/core/lib/promise/party.h: In member function ‘bool grpc_core::Party::PromiseParticipantImpl<SuppliedFactory>::PollParticipantPromise() [with SuppliedFactory = grpc_core::ForwardCall(grpc_core::CallHandler, grpc_core::CallInitiator)::<lambda()> mutable::<lambda(absl::lts_20240116::optional<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> >)> mutable::<lambda(grpc_core::MessageHandle)> mutable::<lambda()>]’:
+      ./src/core/lib/promise/party.h:567:5: warning: control reaches end of non-void function [-Wreturn-type]
+        567 |     }
+            |     ^
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/polling_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/polling_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      ./src/core/lib/promise/party.h: In member function ‘grpc_core::Poll<typename grpc_core::promise_detail::OncePromiseFactory<void, F>::Promise::Result> grpc_core::Party::PromiseParticipantImpl<SuppliedFactory>::PollCompletion() [with SuppliedFactory = grpc_core::ForwardCall(grpc_core::CallHandler, grpc_core::CallInitiator)::<lambda()> mutable::<lambda(absl::lts_20240116::optional<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> >)> mutable::<lambda(grpc_core::MessageHandle)> mutable::<lambda()>]’:
+      ./src/core/lib/promise/party.h:579:5: warning: control reaches end of non-void function [-Wreturn-type]
+        579 |     }
+            |     ^
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/extension.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/conf/conf.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/conf/conf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/charconv_parse.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/client_channel/dynamic_filters.h:29,
+                       from src/core/client_channel/dynamic_filters.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/client_channel/dynamic_filters.h:29,
+                       from src/core/client_channel/dynamic_filters.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_certificate_provider.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_certificate_provider.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/des/des.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/des/des.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_internal.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_internal.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from /usr/include/string.h:535,
+                       from ./src/core/xds/grpc/xds_listener.h:21,
+                       from src/core/xds/grpc/xds_listener.cc:17:
+      In function ‘void* memcpy(void*, const void*, size_t)’,
+          inlined from ‘void _upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only(const upb_MiniTableField*, void*, const void*)’ at third_party/upb/upb/message/internal/accessors.h:158:13,
+          inlined from ‘void _upb_Message_GetNonExtensionField(const upb_Message*, const upb_MiniTableField*, const void*, void*)’ at third_party/upb/upb/message/internal/accessors.h:253:46,
+          inlined from ‘const upb_Array* upb_Message_GetArray(const upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:386:36:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In function ‘void* memcpy(void*, const void*, size_t)’,
+          inlined from ‘void _upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only(const upb_MiniTableField*, void*, const void*)’ at third_party/upb/upb/message/internal/accessors.h:158:13,
+          inlined from ‘void _upb_Message_GetNonExtensionField(const upb_Message*, const upb_MiniTableField*, const void*, void*)’ at third_party/upb/upb/message/internal/accessors.h:257:3,
+          inlined from ‘const upb_Array* upb_Message_GetArray(const upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:386:36:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/channel_stack_type.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/channel_stack_type.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/completion_queue.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/completion_queue.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/xds/xds_cluster_manager.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/xds/xds_cluster_manager.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/call_spine.h:32,
+                       from src/core/lib/transport/call_spine.cc:15:
+      In constructor ‘grpc_core::filters_detail::InfallibleOperationExecutor<T>::InfallibleOperationExecutor(grpc_core::filters_detail::InfallibleOperationExecutor<T>&&) [with T = std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter>]’,
+          inlined from ‘grpc_core::CallFilters::PullServerTrailingMetadataPromise::PullServerTrailingMetadataPromise(grpc_core::CallFilters::PullServerTrailingMetadataPromise&&)’ at ./src/core/lib/transport/call_filters.h:1701:11,
+          inlined from ‘grpc_core::promise_detail::Map<Promise, Fn> grpc_core::Map(Promise, Fn) [with Promise = grpc_core::CallFilters::PullServerTrailingMetadataPromise; Fn = grpc_core::CallFilters::PullServerTrailingMetadata()::<lambda(grpc_core::ServerMetadataHandle)>]’ at ./src/core/lib/promise/map.h:72:76,
+          inlined from ‘auto grpc_core::CallFilters::PullServerTrailingMetadata()’ at ./src/core/lib/transport/call_filters.h:1842:15,
+          inlined from ‘virtual grpc_core::Promise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > grpc_core::CallSpine::PullServerTrailingMetadata()’ at ./src/core/lib/transport/call_spine.h:296:53:
+      ./src/core/lib/transport/call_filters.h:1097:20: warning: ‘<unnamed>.grpc_core::CallFilters::PullServerTrailingMetadataPromise::executor_.grpc_core::filters_detail::InfallibleOperationExecutor<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> >::ops_’ is used uninitialized [-Wuninitialized]
+       1097 |       : ops_(other.ops_), end_ops_(other.end_ops_) {
+            |              ~~~~~~^~~~
+      ./src/core/lib/transport/call_filters.h: In member function ‘virtual grpc_core::Promise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > grpc_core::CallSpine::PullServerTrailingMetadata()’:
+      ./src/core/lib/transport/call_filters.h:1838:52: note: ‘<anonymous>’ declared here
+       1838 |   return Map(PullServerTrailingMetadataPromise(this),
+            |                                                    ^
+      In constructor ‘grpc_core::filters_detail::InfallibleOperationExecutor<T>::InfallibleOperationExecutor(grpc_core::filters_detail::InfallibleOperationExecutor<T>&&) [with T = std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter>]’,
+          inlined from ‘grpc_core::CallFilters::PullServerTrailingMetadataPromise::PullServerTrailingMetadataPromise(grpc_core::CallFilters::PullServerTrailingMetadataPromise&&)’ at ./src/core/lib/transport/call_filters.h:1701:11,
+          inlined from ‘grpc_core::promise_detail::Map<Promise, Fn> grpc_core::Map(Promise, Fn) [with Promise = grpc_core::CallFilters::PullServerTrailingMetadataPromise; Fn = grpc_core::CallFilters::PullServerTrailingMetadata()::<lambda(grpc_core::ServerMetadataHandle)>]’ at ./src/core/lib/promise/map.h:72:76,
+          inlined from ‘auto grpc_core::CallFilters::PullServerTrailingMetadata()’ at ./src/core/lib/transport/call_filters.h:1842:15,
+          inlined from ‘virtual grpc_core::Promise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > grpc_core::CallSpine::PullServerTrailingMetadata()’ at ./src/core/lib/transport/call_spine.h:296:53:
+      ./src/core/lib/transport/call_filters.h:1097:42: warning: ‘<unnamed>.grpc_core::CallFilters::PullServerTrailingMetadataPromise::executor_.grpc_core::filters_detail::InfallibleOperationExecutor<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> >::end_ops_’ is used uninitialized [-Wuninitialized]
+       1097 |       : ops_(other.ops_), end_ops_(other.end_ops_) {
+            |                                    ~~~~~~^~~~~~~~
+      ./src/core/lib/transport/call_filters.h: In member function ‘virtual grpc_core::Promise<std::unique_ptr<grpc_metadata_batch, grpc_core::Arena::PooledDeleter> > grpc_core::CallSpine::PullServerTrailingMetadata()’:
+      ./src/core/lib/transport/call_filters.h:1838:52: note: ‘<anonymous>’ declared here
+       1838 |   return Map(PullServerTrailingMetadataPromise(this),
+            |                                                    ^
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cpu_intel.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cpu_intel.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/crypto.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/crypto.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/outlier_detection/outlier_detection.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/outlier_detection/outlier_detection.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/curve25519/asm/x25519-asm-arm.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/curve25519/asm/x25519-asm-arm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/endpoint_list.cc:42:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/endpoint_list.h:39,
+                       from src/core/load_balancing/endpoint_list.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/sign.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/sign.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/ex_data.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ex_data.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/fake/fake_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/fake/fake_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/output.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/output.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/transport/client_auth_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/transport/client_auth_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/print.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/print.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/surface/completion_queue_factory.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/surface/completion_queue_factory.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/service_config/service_config_parser.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/service_config/service_config_parser.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/engine/engine.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/engine/engine.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/err/err.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/err/err.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/http/client_authority_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/client_authority_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/global_subchannel_pool.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/global_subchannel_pool.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/channel/status_util.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/channel/status_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_client_grpc.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_client_grpc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/evp/evp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/evp/evp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/stringify_sink.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/stringify_sink.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/xds/xds_cluster_manager.cc:57:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/client_channel/client_channel_internal.h:29,
+                       from src/core/load_balancing/xds/xds_cluster_manager.cc:40:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/spx/merkle.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx/merkle.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/subchannel_interface_internal.h:22,
+                       from src/core/load_balancing/outlier_detection/outlier_detection.cc:47:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/subchannel_interface_internal.h:22,
+                       from src/core/load_balancing/outlier_detection/outlier_detection.cc:47:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/spx/spx.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx/spx.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx/spx_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/spx/thash.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx/thash.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/utf8.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/utf8.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/match.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/match.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/spx/wots.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx/wots.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/fake/fake_credentials.h:37,
+                       from src/core/lib/security/credentials/fake/fake_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/fake/fake_credentials.h:37,
+                       from src/core/lib/security/credentials/fake/fake_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rc4/rc4.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/stack/stack.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/stack/stack.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/refcount.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/refcount.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/transport/connectivity_state.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/transport/connectivity_state.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/thread.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/thread.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/thread_none.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/thread_none.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/numbers.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/numbers.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/thread_pthread.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/thread_pthread.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/decode_huff.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/decode_huff.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/compression/compression.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/compression/compression.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/thread_win.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/thread_win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from src/core/lib/security/transport/client_auth_filter.cc:38:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from src/core/lib/security/transport/client_auth_filter.cc:38:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/flow_control.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/flow_control.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_route_config.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_route_config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/resolver_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/resolver_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/spx/address.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx/address.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/by_file.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/by_file.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/grpclb/client_load_reporting_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/grpclb/client_load_reporting_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/spx/fors.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/spx/fors.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/crypt/aes_gcm.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/crypt/aes_gcm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/name_print.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/name_print.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm_asm.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm_asm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/policy.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/policy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/client_authority_filter.h:30,
+                       from src/core/ext/filters/http/client_authority_filter.cc:21:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/client_authority_filter.h:30,
+                       from src/core/ext/filters/http/client_authority_filter.cc:21:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/client_channel/global_subchannel_pool.cc:25:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/client_channel/global_subchannel_pool.cc:25:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cordz_functions.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pool/pool.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pool/pool.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/compression/compression_internal.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/compression/compression_internal.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_val.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_val.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/armv4-mont-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/armv4-mont-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/armv8-mont-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/armv8-mont-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/armv8-mont-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/armv8-mont-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/armv8-mont-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/armv8-mont-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/bn-586-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/bn-586-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/t_req.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/t_req.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/bn-586-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/bn-586-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/crypt/gsec.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/crypt/gsec.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/bn-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/bn-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/bn-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/bn-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/bn-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/bn-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/bsaes-armv7-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/bsaes-armv7-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/co-586-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/co-586-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/co-586-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/co-586-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-armv4-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-armv4-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-ssse3-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-neon-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-neon-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-neon-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-neon-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-neon-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-neon-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256-armv8-asm-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256-armv8-asm-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256-armv8-asm-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256-armv8-asm-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesni-gcm-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesni-gcm-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghash-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256-armv8-asm-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256-armv8-asm-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_int.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256-x86_64-asm-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256-x86_64-asm-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesni-gcm-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesni-gcm-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv7-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv7-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256-x86_64-asm-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256-x86_64-asm-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509name.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509name.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-armv8-asm-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-armv8-asm-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/ghashv8-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/md5-586-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/md5-586-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-armv8-asm-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-armv8-asm-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/md5-586-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/md5-586-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesni-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-armv8-asm-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-armv8-asm-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/md5-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/md5-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv7-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv7-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv4-large-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv4-large-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-x86_64-asm-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-x86_64-asm-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/md5-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/md5-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-x86_64-asm-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/p256_beeu-x86_64-asm-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/frame_protector/alts_counter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector/alts_counter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/rdrand-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/rdrand-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv4-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv4-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/rdrand-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/rdrand-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesv8-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesv8-gcm-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesv8-gcm-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/rsaz-avx2-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/rsaz-avx2-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesv8-gcm-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesv8-gcm-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/rsaz-avx2-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/rsaz-avx2-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/aesv8-gcm-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/aesv8-gcm-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/frame_protector/alts_crypter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector/alts_crypter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-586-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-586-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-586-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-586-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha1-586-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha1-586-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont5-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont5-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-586-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-586-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont5-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/x86_64-mont5-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv7-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv7-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv4-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv4-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/aes128gcmsiv-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/aes128gcmsiv-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/aes128gcmsiv-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/aes128gcmsiv-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv4-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv4-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/err_data.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/err_data.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha256-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha256-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv4-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv4-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/frame.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/frame.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-586-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-586-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/vpaes-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/sha512-586-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/sha512-586-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/x86-mont-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/x86-mont-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/d1_srtp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv8-win.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-armv8-win.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/bcm/x86-mont-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/bcm/x86-mont-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_armv8-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_armv8-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_all.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_all.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/google_default/credentials_generic.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/google_default/credentials_generic.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_armv8-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/crypto/chacha20_poly1305_armv8-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86_64-apple.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86_64-apple.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86_64-linux.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/gen/test_support/trampoline-x86_64-linux.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/tls_method.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/tls_method.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/bio_ssl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/frame_protector/alts_frame_protector.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector/alts_frame_protector.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_cancel.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_cancel.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_create_query.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_create_query.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/load_balancing/grpclb/client_load_reporting_filter.h:28,
+                       from src/core/load_balancing/grpclb/client_load_reporting_filter.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/load_balancing/grpclb/client_load_reporting_filter.h:28,
+                       from src/core/load_balancing/grpclb/client_load_reporting_filter.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_data.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_data.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_init.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_init.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_destroy.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_destroy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/compression/message_compress.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/compression/message_compress.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/sockaddr/sockaddr_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/sockaddr/sockaddr_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/d1_both.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/d1_both.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_expand_name.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_expand_name.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_name.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_name.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_expand_string.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_expand_string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/local_subchannel_pool.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/local_subchannel_pool.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/tls_record.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/tls_record.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/dtls_method.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/dtls_method.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_fds.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_fds.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_uri_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_uri_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/xds/xds_override_host.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/xds/xds_override_host.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_library_init.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_library_init.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_free_hostent.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_free_hostent.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_llist.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_llist.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_platform.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_platform.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_credential.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_free_string.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_free_string.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_mkquery.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_mkquery.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_process.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_process.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_req.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_req.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/inet_ntop.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/inet_ntop.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_freeaddrinfo.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_freeaddrinfo.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_nowarn.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_nowarn.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/windows_port.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/windows_port.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_options.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_options.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_getaddrinfo.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_getaddrinfo.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/bitstate.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/bitstate.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_query.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_query.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_a_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_a_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/set.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/set.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mem/alloc.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mem/alloc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/dtls_record.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/dtls_record.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_rand.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_rand.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_getenv.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_getenv.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/d1_lib.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/d1_lib.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mem/arena.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mem/arena.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_gethostbyaddr.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_gethostbyaddr.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_caa_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_caa_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_search.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_search.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/accessors.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/accessors.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_curve25519_adx_mul.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_curve25519_adx_mul.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_curve25519_adx_square.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_curve25519_adx_square.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_gethostbyname.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_gethostbyname.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_p256_adx_mul.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_p256_adx_mul.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_mx_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_mx_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_p256_adx_sqr.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/third_party/fiat/asm/fiat_p256_adx_sqr.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__addrinfo2hostent.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__addrinfo2hostent.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/array.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/array.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_send.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_send.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_naptr_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_naptr_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_strcasecmp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_strcasecmp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_getnameinfo.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_getnameinfo.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__addrinfo_localhost.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__addrinfo_localhost.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/compat.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/compat.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_ns_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_ns_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/transport/server_auth_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/transport/server_auth_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_strdup.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_strdup.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/copy.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/copy.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__close_sockets.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__close_sockets.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_file.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_file.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_getsock.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_getsock.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__get_hostent.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__get_hostent.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/frame_data.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/frame_data.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_ptr_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_ptr_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/frame_protector/frame_handler.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/frame_protector/frame_handler.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_strerror.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_strerror.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from third_party/upb/upb/message/copy.c:16:
+      In function ‘upb_Message_GetField’,
+          inlined from ‘upb_Message_GetString’ at third_party/upb/upb/message/accessors.h:303:10,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:224:32:
+      third_party/upb/upb/message/accessors.h:89:10: warning: ‘ret’ may be used uninitialized [-Wmaybe-uninitialized]
+         89 |   return ret;
+            |          ^~~
+      third_party/upb/upb/message/copy.c: In function ‘_upb_Message_Copy’:
+      third_party/upb/upb/message/accessors.h:82:20: note: ‘ret’ declared here
+         82 |   upb_MessageValue ret;
+            |                    ^~~
+      In function ‘upb_Message_GetField’,
+          inlined from ‘upb_Message_GetString’ at third_party/upb/upb/message/accessors.h:303:10,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:224:32:
+      third_party/upb/upb/message/accessors.h:89:10: warning: ‘ret’ may be used uninitialized [-Wmaybe-uninitialized]
+         89 |   return ret;
+            |          ^~~
+      third_party/upb/upb/message/copy.c: In function ‘_upb_Message_Copy’:
+      third_party/upb/upb/message/accessors.h:82:20: note: ‘ret’ declared here
+         82 |   upb_MessageValue ret;
+            |                    ^~~
+      In function ‘upb_Message_GetField’,
+          inlined from ‘upb_Message_GetString’ at third_party/upb/upb/message/accessors.h:303:10,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:224:32:
+      third_party/upb/upb/message/accessors.h:89:10: warning: ‘ret’ may be used uninitialized [-Wmaybe-uninitialized]
+         89 |   return ret;
+            |          ^~~
+      third_party/upb/upb/message/copy.c: In function ‘_upb_Message_Copy’:
+      third_party/upb/upb/message/accessors.h:82:20: note: ‘ret’ declared here
+         82 |   upb_MessageValue ret;
+            |                    ^~~
+      In function ‘upb_Message_GetField’,
+          inlined from ‘upb_Message_GetString’ at third_party/upb/upb/message/accessors.h:303:10,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:224:32:
+      third_party/upb/upb/message/accessors.h:89:10: warning: ‘ret’ may be used uninitialized [-Wmaybe-uninitialized]
+         89 |   return ret;
+            |          ^~~
+      third_party/upb/upb/message/copy.c: In function ‘_upb_Message_Copy’:
+      third_party/upb/upb/message/accessors.h:82:20: note: ‘ret’ declared here
+         82 |   upb_MessageValue ret;
+            |                    ^~~
+      In function ‘upb_Message_GetField’,
+          inlined from ‘upb_Message_GetString’ at third_party/upb/upb/message/accessors.h:303:10,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:224:32:
+      third_party/upb/upb/message/accessors.h:89:10: warning: ‘ret’ may be used uninitialized [-Wmaybe-uninitialized]
+         89 |   return ret;
+            |          ^~~
+      third_party/upb/upb/message/copy.c: In function ‘_upb_Message_Copy’:
+      third_party/upb/upb/message/accessors.h:82:20: note: ‘ret’ declared here
+         82 |   upb_MessageValue ret;
+            |                    ^~~
+      In function ‘upb_Message_GetField’,
+          inlined from ‘upb_Message_GetString’ at third_party/upb/upb/message/accessors.h:303:10,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:224:32:
+      third_party/upb/upb/message/accessors.h:89:10: warning: ‘ret’ may be used uninitialized [-Wmaybe-uninitialized]
+         89 |   return ret;
+            |          ^~~
+      third_party/upb/upb/message/copy.c: In function ‘_upb_Message_Copy’:
+      third_party/upb/upb/message/accessors.h:82:20: note: ‘ret’ declared here
+         82 |   upb_MessageValue ret;
+            |                    ^~~
+      In file included from /usr/include/string.h:535,
+                       from third_party/upb/upb/mem/internal/arena.h:13,
+                       from third_party/upb/upb/mem/arena.h:27,
+                       from third_party/upb/upb/message/copy.h:11,
+                       from third_party/upb/upb/message/copy.c:8:
+      In function ‘memcpy’,
+          inlined from ‘_upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only’ at third_party/upb/upb/message/internal/accessors.h:158:7,
+          inlined from ‘_upb_Message_SetNonExtensionField’ at third_party/upb/upb/message/internal/accessors.h:279:3,
+          inlined from ‘_upb_Message_SetTaggedMessagePtr’ at third_party/upb/upb/message/accessors.h:351:3,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:216:13:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:10: warning: ‘__builtin_memcpy’ reading 16 bytes from a region of size 8 [-Wstringop-overread]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/credentials/google_default/credentials_generic.cc:28:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h: In function ‘_upb_Message_Copy’:
+      third_party/upb/upb/message/copy.c:188:14: note: source object ‘sub_message’ of size 8
+        188 | upb_Message* _upb_Message_Copy(upb_Message* dst, const upb_Message* src,
+            |              ^~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from src/core/lib/security/credentials/google_default/credentials_generic.cc:28:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/string.h:535,
+                       from third_party/upb/upb/mem/internal/arena.h:13,
+                       from third_party/upb/upb/mem/arena.h:27,
+                       from third_party/upb/upb/message/copy.h:11,
+                       from third_party/upb/upb/message/copy.c:8:
+      In function ‘memcpy’,
+          inlined from ‘_upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only’ at third_party/upb/upb/message/internal/accessors.h:158:7,
+          inlined from ‘_upb_Message_GetNonExtensionField’ at third_party/upb/upb/message/internal/accessors.h:253:5,
+          inlined from ‘upb_Message_GetMap’ at third_party/upb/upb/message/accessors.h:430:3,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:238:30:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:10: warning: ‘__builtin___memcpy_chk’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In function ‘memcpy’,
+          inlined from ‘_upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only’ at third_party/upb/upb/message/internal/accessors.h:158:7,
+          inlined from ‘_upb_Message_GetNonExtensionField’ at third_party/upb/upb/message/internal/accessors.h:256:3,
+          inlined from ‘upb_Message_GetMap’ at third_party/upb/upb/message/accessors.h:430:3,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:238:30:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:10: warning: ‘__builtin___memcpy_chk’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In function ‘memcpy’,
+          inlined from ‘_upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only’ at third_party/upb/upb/message/internal/accessors.h:158:7,
+          inlined from ‘_upb_Message_GetNonExtensionField’ at third_party/upb/upb/message/internal/accessors.h:253:5,
+          inlined from ‘upb_Message_GetArray’ at third_party/upb/upb/message/accessors.h:386:3,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:245:34:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:10: warning: ‘__builtin___memcpy_chk’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In function ‘memcpy’,
+          inlined from ‘_upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only’ at third_party/upb/upb/message/internal/accessors.h:158:7,
+          inlined from ‘_upb_Message_GetNonExtensionField’ at third_party/upb/upb/message/internal/accessors.h:256:3,
+          inlined from ‘upb_Message_GetArray’ at third_party/upb/upb/message/accessors.h:386:3,
+          inlined from ‘_upb_Message_Copy’ at third_party/upb/upb/message/copy.c:245:34:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:10: warning: ‘__builtin___memcpy_chk’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_table/extension_registry.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_table/extension_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_strsplit.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_strsplit.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_soa_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_soa_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/compile.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/compile.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_table/internal/message.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_table/internal/message.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/internal/extension.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/internal/extension.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_table/message.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_table/message.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_timeout.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_timeout.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_srv_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_srv_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/d1_pkt.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/internal/message.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/internal/message.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__read_line.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__read_line.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/def_pool.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/def_pool.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_version.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_version.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/http/http_filters_plugin.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/http_filters_plugin.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/map.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/map.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__readaddrinfo.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__readaddrinfo.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_parse_txt_reply.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_parse_txt_reply.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/handshaker/alts_handshaker_client.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/handshaker/alts_handshaker_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_writev.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_writev.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/map_sorter.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/map_sorter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/message_reserved_range.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/message_reserved_range.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__sortaddrinfo.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__sortaddrinfo.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/def_type.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/def_type.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/bitncmp.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/bitncmp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/simplify.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/simplify.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/message/message.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/message/message.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/desc_state.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/desc_state.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares__timeval.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares__timeval.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/inet_net_pton.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/inet_net_pton.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_descriptor/build_enum.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_descriptor/build_enum.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/enum_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/enum_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/method_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/method_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/cares/cares/src/lib/ares_android.c -o pyb/temp.linux-x86_64-cpython-313/third_party/cares/cares/src/lib/ares_android.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/inffast.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/inffast.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_descriptor/decode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_descriptor/decode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/pick_first/pick_first.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/pick_first/pick_first.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/inflate.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/inflate.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/oneof_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/oneof_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/enum_reserved_range.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/enum_reserved_range.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/client_channel/local_subchannel_pool.cc:29:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from src/core/client_channel/local_subchannel_pool.cc:29:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/google_default/google_default_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/google_default/google_default_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/enum_value_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/enum_value_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_descriptor/internal/base92.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_descriptor/internal/base92.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/service_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/service_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_descriptor/internal/encode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_descriptor/internal/encode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_cluster.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_cluster.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/mini_descriptor/link.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/mini_descriptor/link.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/extension_range.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/extension_range.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/extensions.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/extensions.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/stateful_session/stateful_session_filter.h:32,
+                       from src/core/load_balancing/xds/xds_override_host.cc:51:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/xds/xds_override_host.h:29,
+                       from src/core/load_balancing/xds/xds_override_host.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/text/encode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/text/encode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/inftrees.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/inftrees.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/field_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/field_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/stringpiece.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/stringpiece.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/trees.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/trees.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/dfa.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/dfa.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/wire/decode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/wire/decode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_lib.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/uncompr.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/uncompr.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/zutil.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/zutil.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from src/core/lib/security/transport/server_auth_filter.cc:40:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from src/core/lib/security/transport/server_auth_filter.cc:40:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/tostring.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/tostring.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_data.h:35,
+                       from src/core/ext/transport/chttp2/transport/frame_data.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_data.h:35,
+                       from src/core/ext/transport/chttp2/transport/frame_data.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/wire/encode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/wire/encode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/file_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/file_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/client/http_client_filter.h:27,
+                       from src/core/ext/filters/http/http_filters_plugin.cc:23:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/client/http_client_filter.h:27,
+                       from src/core/ext/filters/http/http_filters_plugin.cc:23:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/wire/eps_copy_input_stream.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/wire/eps_copy_input_stream.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/tsi/alts/handshaker/alts_handshaker_client.cc:36:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/core/tsi/alts/handshaker/alts_handshaker_client.cc:36:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/wire/internal/decode_fast.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/wire/internal/decode_fast.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/wire/reader.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/wire/reader.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/internal/def_builder.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/internal/def_builder.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/unicode_casefold.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/unicode_casefold.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/utf8_range/utf8_range.c -o pyb/temp.linux-x86_64-cpython-313/third_party/utf8_range/utf8_range.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/unicode_groups.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/unicode_groups.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/adler32.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/adler32.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/util/rune.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/util/rune.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/util/strutil.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/util/strutil.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/compress.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/compress.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/crc32.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/crc32.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/internal/strdup2.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/internal/strdup2.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/message.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/message.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/xds/xds_dependency_manager.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/xds/xds_dependency_manager.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/deflate.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/deflate.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/base/status.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/base/status.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/handoff.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/handoff.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/hash/common.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/hash/common.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/reflection/message_def.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/reflection/message_def.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from /usr/include/string.h:535,
+                       from /usr/include/c++/11/cstring:42,
+                       from third_party/abseil-cpp/absl/strings/string_view.h:33,
+                       from ./src/core/xds/grpc/xds_route_config.h:28,
+                       from src/core/xds/grpc/xds_route_config.cc:17:
+      In function ‘void* memcpy(void*, const void*, size_t)’,
+          inlined from ‘void _upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only(const upb_MiniTableField*, void*, const void*)’ at third_party/upb/upb/message/internal/accessors.h:158:13,
+          inlined from ‘void _upb_Message_GetNonExtensionField(const upb_Message*, const upb_MiniTableField*, const void*, void*)’ at third_party/upb/upb/message/internal/accessors.h:253:46,
+          inlined from ‘const upb_Array* upb_Message_GetArray(const upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:386:36:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/retry_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/retry_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In function ‘void* memcpy(void*, const void*, size_t)’,
+          inlined from ‘void _upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only(const upb_MiniTableField*, void*, const void*)’ at third_party/upb/upb/message/internal/accessors.h:158:13,
+          inlined from ‘void _upb_Message_GetNonExtensionField(const upb_Message*, const upb_MiniTableField*, const void*, void*)’ at third_party/upb/upb/message/internal/accessors.h:257:3,
+          inlined from ‘const upb_Array* upb_Message_GetArray(const upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:386:36:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/google_default/google_default_credentials.h:32,
+                       from src/core/lib/security/credentials/google_default/google_default_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/google_default/google_default_credentials.h:32,
+                       from src/core/lib/security/credentials/google_default/google_default_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/hrss/asm/poly_rq_mul.S -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/hrss/asm/poly_rq_mul.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/zlib/infback.c -o pyb/temp.linux-x86_64-cpython-313/third_party/zlib/infback.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/json/decode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/json/decode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/keccak/keccak.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/json/encode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/json/encode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/filtered_re2.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/filtered_re2.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from /usr/include/string.h:535,
+                       from /usr/include/c++/11/cstring:42,
+                       from third_party/abseil-cpp/absl/strings/string_view.h:33,
+                       from third_party/abseil-cpp/absl/log/internal/nullstream.h:37,
+                       from third_party/abseil-cpp/absl/log/internal/check_op.h:36,
+                       from third_party/abseil-cpp/absl/log/internal/check_impl.h:19,
+                       from third_party/abseil-cpp/absl/log/check.h:37,
+                       from ./src/core/lib/iomgr/closure.h:25,
+                       from ./src/core/tsi/alts/handshaker/alts_handshaker_client.h:27,
+                       from src/core/tsi/alts/handshaker/alts_handshaker_client.cc:19:
+      In function ‘void* memcpy(void*, const void*, size_t)’,
+          inlined from ‘void _upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only(const upb_MiniTableField*, void*, const void*)’ at third_party/upb/upb/message/internal/accessors.h:158:13,
+          inlined from ‘void _upb_Message_GetNonExtensionField(const upb_Message*, const upb_MiniTableField*, const void*, void*)’ at third_party/upb/upb/message/internal/accessors.h:253:46,
+          inlined from ‘const upb_Array* upb_Message_GetArray(const upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:386:36,
+          inlined from ‘upb_Array* upb_Message_GetMutableArray(upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:393:42,
+          inlined from ‘upb_Array* upb_Message_GetOrCreateMutableArray(upb_Message*, const upb_MiniTableField*, upb_Arena*)’ at third_party/upb/upb/message/accessors.h:400:49:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In function ‘void* memcpy(void*, const void*, size_t)’,
+          inlined from ‘void _upb_MiniTableField_DataCopy_dont_copy_me__upb_internal_use_only(const upb_MiniTableField*, void*, const void*)’ at third_party/upb/upb/message/internal/accessors.h:158:13,
+          inlined from ‘void _upb_Message_GetNonExtensionField(const upb_Message*, const upb_MiniTableField*, const void*, void*)’ at third_party/upb/upb/message/internal/accessors.h:257:3,
+          inlined from ‘const upb_Array* upb_Message_GetArray(const upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:386:36,
+          inlined from ‘upb_Array* upb_Message_GetMutableArray(upb_Message*, const upb_MiniTableField*)’ at third_party/upb/upb/message/accessors.h:393:42,
+          inlined from ‘upb_Array* upb_Message_GetOrCreateMutableArray(upb_Message*, const upb_MiniTableField*, upb_Arena*)’ at third_party/upb/upb/message/accessors.h:400:49:
+      /usr/include/x86_64-linux-gnu/bits/string_fortified.h:29:33: warning: ‘void* __builtin___memcpy_chk(void*, const void*, long unsigned int, long unsigned int)’ writing 16 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]
+         29 |   return __builtin___memcpy_chk (__dest, __src, __len,
+            |          ~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
+         30 |                                  __glibc_objsize0 (__dest));
+            |                                  ~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/lex/atoi.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/lex/atoi.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/lex/round_trip.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/lex/round_trip.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/lhash/lhash.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/handshake.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/handshake.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/lex/strtod.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/lex/strtod.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/upb/upb/lex/unicode.c -o pyb/temp.linux-x86_64-cpython-313/third_party/upb/upb/lex/unicode.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/mem.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/mem.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/frame_goaway.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/frame_goaway.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/obj/obj.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/obj/obj.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_session.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_session.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/mimics_pcre.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/mimics_pcre.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/tls_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/tls_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/tsi/alts/handshaker/alts_shared_resource.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/tsi/alts/handshaker/alts_shared_resource.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from ./src/core/client_channel/retry_filter.h:35,
+                       from src/core/client_channel/retry_filter.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from ./src/core/client_channel/retry_filter.h:35,
+                       from src/core/client_channel/retry_filter.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      cc1: warning: command-line option ‘-std=c++14’ is valid for C++/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/nfa.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/nfa.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/handshake_client.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/handshake_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_stat.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/iam/iam_credentials.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/iam/iam_credentials.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/util/json_util.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/util/json_util.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/http/message_compress/compression_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/message_compress/compression_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/tls/tls_credentials.h:30,
+                       from src/core/lib/security/credentials/tls/tls_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/tls/tls_credentials.h:30,
+                       from src/core/lib/security/credentials/tls/tls_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/onepass.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/onepass.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/frame_goaway.cc:34:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/frame_goaway.cc:34:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/handshake_server.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/handshake_server.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_versions.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_routing.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_routing.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/priority/priority.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/priority/priority.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/parse.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/parse.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/retry_filter_legacy_call_data.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/retry_filter_legacy_call_data.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/slice/percent_encoding.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/slice/percent_encoding.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_x509.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/iam/iam_credentials.h:34,
+                       from src/core/lib/security/credentials/iam/iam_credentials.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/lib/security/credentials/iam/iam_credentials.h:34,
+                       from src/core/lib/security/credentials/iam/iam_credentials.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/s3_both.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/s3_both.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/lib/security/credentials/tls/tls_utils.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/lib/security/credentials/tls/tls_utils.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/transport/chttp2/transport/frame_ping.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/transport/chttp2/transport/frame_ping.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/message_compress/compression_filter.h:34,
+                       from src/core/ext/filters/http/message_compress/compression_filter.cc:17:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/message_compress/compression_filter.h:34,
+                       from src/core/ext/filters/http/message_compress/compression_filter.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/perl_groups.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/perl_groups.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/prefilter.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/prefilter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/s3_lib.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/s3_lib.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/t1_enc.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/t1_enc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from ./src/core/client_channel/retry_filter_legacy_call_data.h:33,
+                       from src/core/client_channel/retry_filter_legacy_call_data.cc:17:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from ./src/core/client_channel/retry_filter_legacy_call_data.h:33,
+                       from src/core/client_channel/retry_filter_legacy_call_data.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/s3_pkt.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/xds/xds_wrr_locality.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/xds/xds_wrr_locality.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_cluster_specifier_plugin.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_cluster_specifier_plugin.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/tls13_both.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/tls13_both.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/prefilter_tree.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/prefilter_tree.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/priority/priority.cc:60:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/load_balancing/priority/priority.cc:43:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/frame_ping.cc:35:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/ext/transport/chttp2/transport/frame_rst_stream.h:29,
+                       from ./src/core/ext/transport/chttp2/transport/internal.h:48,
+                       from src/core/ext/transport/chttp2/transport/frame_ping.cc:35:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/tls13_client.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/tls13_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/prog.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/prog.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/tls13_enc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/xds/xds_wrr_locality.cc:47:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from src/core/load_balancing/xds/xds_wrr_locality.cc:35:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/core/load_balancing/priority/priority.cc: At global scope:
+      src/core/load_balancing/priority/priority.cc:377:10: warning: ‘uint32_t grpc_core::{anonymous}::PriorityLb::GetChildPriorityLocked(const string&) const’ defined but not used [-Wunused-function]
+        377 | uint32_t PriorityLb::GetChildPriorityLocked(
+            |          ^~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_common_types.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_common_types.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/tls13_server.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/tls13_server.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/boringssl-with-bazel/src/ssl/ssl_cert.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_transport_grpc.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_transport_grpc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/http/server/http_server_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/http/server/http_server_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/re2.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/re2.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/ring_hash/ring_hash.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/ring_hash/ring_hash.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/re2/re2/regexp.cc -o pyb/temp.linux-x86_64-cpython-313/third_party/re2/re2/regexp.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/server/http_server_filter.h:28,
+                       from src/core/ext/filters/http/server/http_server_filter.cc:21:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/http/server/http_server_filter.h:28,
+                       from src/core/ext/filters/http/server/http_server_filter.cc:21:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/xds/grpc/xds_transport_grpc.cc:40:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/xds/grpc/xds_transport_grpc.cc:40:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/xds/xds_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/xds/xds_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/retry_service_config.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/retry_service_config.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/plugin_registry/grpc_plugin_registry.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/plugin_registry/grpc_plugin_registry.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/security/credentials/credentials.h:46,
+                       from ./src/core/load_balancing/delegating_helper.h:34,
+                       from src/core/load_balancing/ring_hash/ring_hash.cc:65:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/service_config/service_config_call_data.h:27,
+                       from ./src/core/load_balancing/ring_hash/ring_hash.h:29,
+                       from src/core/load_balancing/ring_hash/ring_hash.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_endpoint.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_endpoint.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from src/core/resolver/xds/xds_resolver.cc:55:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/client_channel/client_channel_internal.h:29,
+                       from src/core/resolver/xds/xds_resolver.cc:51:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/lib/surface/lame_client.h:33,
+                       from src/core/plugin_registry/grpc_plugin_registry.cc:27:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/handshaker/endpoint_info/endpoint_info_handshaker.h:22,
+                       from src/core/plugin_registry/grpc_plugin_registry.cc:22:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/message_size/message_size_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/message_size/message_size_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/xds_client/xds_api.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/xds_client/xds_api.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/client_channel/retry_throttle.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/client_channel/retry_throttle.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/plugin_registry/grpc_plugin_registry_extra.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/plugin_registry/grpc_plugin_registry_extra.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/message_size/message_size_filter.h:34,
+                       from src/core/ext/filters/message_size/message_size_filter.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/ext/filters/message_size/message_size_filter.h:33,
+                       from src/core/ext/filters/message_size/message_size_filter.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/rls/rls.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/rls/rls.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_health_status.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_health_status.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/xds_client/xds_bootstrap.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/xds_client/xds_bootstrap.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/xds_client/xds_client.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/xds_client/xds_client.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/binder/binder_resolver.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/binder/binder_resolver.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_http_fault_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_http_fault_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/load_balancing/rls/rls.cc:70:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:42,
+                       from ./src/core/client_channel/connector.h:31,
+                       from ./src/core/client_channel/subchannel.h:34,
+                       from ./src/core/client_channel/client_channel_factory.h:24,
+                       from ./src/core/client_channel/client_channel_filter.h:41,
+                       from src/core/load_balancing/rls/rls.cc:70:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/ext/filters/rbac/rbac_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/ext/filters/rbac/rbac_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/fault_injection/fault_injection_filter.h:32,
+                       from src/core/xds/grpc/xds_http_fault_filter.cc:38:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/fault_injection/fault_injection_filter.h:32,
+                       from src/core/xds/grpc/xds_http_fault_filter.cc:38:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/rbac/rbac_filter.h:28,
+                       from src/core/ext/filters/rbac/rbac_filter.cc:19:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/rbac/rbac_filter.h:28,
+                       from src/core/ext/filters/rbac/rbac_filter.cc:19:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/xds/xds_resolver_trace.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/xds/xds_resolver_trace.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/c_ares/dns_resolver_ares.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/c_ares/dns_resolver_ares.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/server/server.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/server/server.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_http_filters.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_http_filters.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/server/server.h:51,
+                       from src/core/server/server.cc:17:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/server/server.h:48,
+                       from src/core/server/server.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/grpc/xds_http_rbac_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/grpc/xds_http_rbac_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/round_robin/round_robin.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/round_robin/round_robin.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/xds/xds_client/xds_client_stats.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/xds/xds_client/xds_client_stats.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/rbac/rbac_filter.h:28,
+                       from src/core/xds/grpc/xds_http_rbac_filter.cc:46:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/lib/channel/promise_based_filter.h:48,
+                       from ./src/core/ext/filters/rbac/rbac_filter.h:28,
+                       from src/core/xds/grpc/xds_http_rbac_filter.cc:46:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/core/server/server.cc: In member function ‘grpc_call_error grpc_core::Server::QueueRequestedCall(size_t, grpc_core::Server::RequestedCall*)’:
+      src/core/server/server.cc:1221:37: warning: ‘rm’ may be used uninitialized in this function [-Wmaybe-uninitialized]
+       1221 |   rm->RequestCallWithPossiblePublish(cq_idx, rc);
+            |   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/c_ares/grpc_ares_wrapper.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/python/grpcio/grpc/_cython/cygrpc.cpp -o pyb/temp.linux-x86_64-cpython-313/src/python/grpcio/grpc/_cython/cygrpc.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/server/server_call_tracer_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/server/server_call_tracer_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/resolver/dns/dns_resolver_plugin.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/resolver/dns/dns_resolver_plugin.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/load_balancing/weighted_round_robin/weighted_round_robin.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/lib/surface/call.h:38,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:2407:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:2405:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: At global scope:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:2502:72: warning: ‘Py_UNICODE’ is deprecated [-Wdeprecated-declarations]
+       2502 | static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) {
+            |                                                                        ^
+      In file included from /usr/include/python3.13/unicodeobject.h:1014,
+                       from /usr/include/python3.13/Python.h:75,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/unicodeobject.h:10:37: note: declared here
+         10 | Py_DEPRECATED(3.13) typedef wchar_t Py_UNICODE;
+            |                                     ^~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:2503:23: warning: ‘Py_UNICODE’ is deprecated [-Wdeprecated-declarations]
+       2503 |     const Py_UNICODE *u_end = u;
+            |                       ^~~~~
+      In file included from /usr/include/python3.13/unicodeobject.h:1014,
+                       from /usr/include/python3.13/Python.h:75,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/unicodeobject.h:10:37: note: declared here
+         10 | Py_DEPRECATED(3.13) typedef wchar_t Py_UNICODE;
+            |                                     ^~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘void __Pyx_init_assertions_enabled()’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6377:39: error: ‘_PyInterpreterState_GetConfig’ was not declared in this scope; did you mean ‘PyInterpreterState_GetID’?
+       6377 |     __pyx_assertions_enabled_flag = ! _PyInterpreterState_GetConfig(__Pyx_PyThreadState_Current->interp)->optimization_level;
+            |                                       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+            |                                       PyInterpreterState_GetID
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘int __Pyx_PyList_Extend(PyObject*, PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6410:22: error: ‘_PyList_Extend’ was not declared in this scope; did you mean ‘PyList_Extend’?
+       6410 |     PyObject* none = _PyList_Extend((PyListObject*)L, v);
+            |                      ^~~~~~~~~~~~~~
+            |                      PyList_Extend
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘int __pyx_pymod_exec_cygrpc(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129088:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129088 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_uds, __pyx_t_7) < 0) __PYX_ERR(5, 357, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129100:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129100 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_local_tcp, __pyx_t_7) < 0) __PYX_ERR(5, 358, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129251:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129251 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_used_mask, __pyx_t_7) < 0) __PYX_ERR(17, 19, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129263:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129263 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_wait_for_ready, __pyx_t_7) < 0) __PYX_ERR(17, 20, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129275:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129275 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_wait_for_ready_explicitly_set, __pyx_t_7) < 0) __PYX_ERR(17, 21, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from src/core/server/server_call_tracer_filter.cc:32:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/call_tracer.h:33,
+                       from ./src/core/lib/channel/metrics.h:31,
+                       from ./src/core/load_balancing/lb_policy.h:41,
+                       from ./src/core/load_balancing/lb_policy_registry.h:31,
+                       from ./src/core/lib/config/core_configuration.h:32,
+                       from ./src/core/server/server_call_tracer_filter.h:20,
+                       from src/core/server/server_call_tracer_filter.cc:17:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129328:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129328 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_GRPC_PROPAGATE_DEADLINE, __pyx_t_7) < 0) __PYX_ERR(39, 16, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129340:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129340 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_GRPC_PROPAGATE_CENSUS_STATS_CONT, __pyx_t_7) < 0) __PYX_ERR(39, 17, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129352:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129352 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_GRPC_PROPAGATE_CENSUS_TRACING_CO, __pyx_t_7) < 0) __PYX_ERR(39, 18, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129363:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129363 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_GRPC_PROPAGATE_CANCELLATION, __pyx_t_7) < 0) __PYX_ERR(39, 19, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129373:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129373 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_GRPC_PROPAGATE_DEFAULTS, __pyx_t_7) < 0) __PYX_ERR(39, 20, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129408:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129408 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_idle, __pyx_t_7) < 0) __PYX_ERR(20, 36, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129420:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129420 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_connecting, __pyx_t_7) < 0) __PYX_ERR(20, 37, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129432:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129432 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_ready, __pyx_t_7) < 0) __PYX_ERR(20, 38, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129444:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129444 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_transient_failure, __pyx_t_7) < 0) __PYX_ERR(20, 39, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129456:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129456 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_shutdown, __pyx_t_7) < 0) __PYX_ERR(20, 40, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129491:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129491 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_enable_census, __pyx_t_7) < 0) __PYX_ERR(20, 44, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129503:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129503 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_max_concurrent_streams, __pyx_t_7) < 0) __PYX_ERR(20, 45, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129515:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129515 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_max_receive_message_length, __pyx_t_7) < 0) __PYX_ERR(20, 46, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129527:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129527 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_max_send_message_length, __pyx_t_7) < 0) __PYX_ERR(20, 47, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129539:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129539 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_http2_initial_sequence_number, __pyx_t_7) < 0) __PYX_ERR(20, 48, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129551:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129551 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_default_authority, __pyx_t_7) < 0) __PYX_ERR(20, 49, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129563:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129563 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_primary_user_agent_string, __pyx_t_7) < 0) __PYX_ERR(20, 50, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129575:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129575 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_secondary_user_agent_string, __pyx_t_7) < 0) __PYX_ERR(20, 51, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129587:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129587 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_ssl_session_cache, __pyx_t_7) < 0) __PYX_ERR(20, 52, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129599:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129599 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_ssl_target_name_override, __pyx_t_7) < 0) __PYX_ERR(20, 53, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129634:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129634 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_buffer_hint, __pyx_t_7) < 0) __PYX_ERR(20, 57, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129646:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129646 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_no_compress, __pyx_t_7) < 0) __PYX_ERR(20, 58, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129681:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129681 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_ok, __pyx_t_7) < 0) __PYX_ERR(20, 62, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129693:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129693 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_cancelled, __pyx_t_7) < 0) __PYX_ERR(20, 63, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129705:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129705 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_unknown, __pyx_t_7) < 0) __PYX_ERR(20, 64, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129717:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129717 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_invalid_argument, __pyx_t_7) < 0) __PYX_ERR(20, 65, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129729:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129729 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_deadline_exceeded, __pyx_t_7) < 0) __PYX_ERR(20, 66, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129741:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129741 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_not_found, __pyx_t_7) < 0) __PYX_ERR(20, 67, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129753:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129753 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_already_exists, __pyx_t_7) < 0) __PYX_ERR(20, 68, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129765:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129765 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_permission_denied, __pyx_t_7) < 0) __PYX_ERR(20, 69, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129777:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129777 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_unauthenticated, __pyx_t_7) < 0) __PYX_ERR(20, 70, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129789:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129789 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_resource_exhausted, __pyx_t_7) < 0) __PYX_ERR(20, 71, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129801:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129801 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_failed_precondition, __pyx_t_7) < 0) __PYX_ERR(20, 72, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129813:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129813 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_aborted, __pyx_t_7) < 0) __PYX_ERR(20, 73, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129825:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129825 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_out_of_range, __pyx_t_7) < 0) __PYX_ERR(20, 74, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129837:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129837 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_unimplemented, __pyx_t_7) < 0) __PYX_ERR(20, 75, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129849:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129849 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_internal, __pyx_t_7) < 0) __PYX_ERR(20, 76, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129861:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129861 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_unavailable, __pyx_t_7) < 0) __PYX_ERR(20, 77, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129873:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129873 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_data_loss, __pyx_t_7) < 0) __PYX_ERR(20, 78, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129908:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129908 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_ok, __pyx_t_7) < 0) __PYX_ERR(20, 82, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129920:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129920 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_error, __pyx_t_7) < 0) __PYX_ERR(20, 83, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129932:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129932 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_not_on_server, __pyx_t_7) < 0) __PYX_ERR(20, 84, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129944:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129944 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_not_on_client, __pyx_t_7) < 0) __PYX_ERR(20, 85, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129956:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129956 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_already_accepted, __pyx_t_7) < 0) __PYX_ERR(20, 86, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129968:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129968 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_already_invoked, __pyx_t_7) < 0) __PYX_ERR(20, 87, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129980:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129980 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_not_invoked, __pyx_t_7) < 0) __PYX_ERR(20, 88, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:129992:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      129992 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_already_finished, __pyx_t_7) < 0) __PYX_ERR(20, 89, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130004:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130004 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_too_many_operations, __pyx_t_7) < 0) __PYX_ERR(20, 90, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130016:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130016 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_invalid_flags, __pyx_t_7) < 0) __PYX_ERR(20, 91, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130028:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130028 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_invalid_metadata, __pyx_t_7) < 0) __PYX_ERR(20, 92, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130063:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130063 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_queue_shutdown, __pyx_t_7) < 0) __PYX_ERR(20, 96, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130075:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130075 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_queue_timeout, __pyx_t_7) < 0) __PYX_ERR(20, 97, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130087:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130087 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_operation_complete, __pyx_t_7) < 0) __PYX_ERR(20, 98, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130122:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130122 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_send_initial_metadata_2, __pyx_t_7) < 0) __PYX_ERR(20, 102, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130134:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130134 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_send_message_2, __pyx_t_7) < 0) __PYX_ERR(20, 103, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130146:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130146 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_send_close_from_client, __pyx_t_7) < 0) __PYX_ERR(20, 104, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130158:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130158 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_send_status_from_server, __pyx_t_7) < 0) __PYX_ERR(20, 105, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130170:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130170 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_receive_initial_metadata_2, __pyx_t_7) < 0) __PYX_ERR(20, 106, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130182:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130182 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_receive_message_2, __pyx_t_7) < 0) __PYX_ERR(20, 107, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130194:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130194 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_receive_status_on_client, __pyx_t_7) < 0) __PYX_ERR(20, 108, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130206:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130206 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_receive_close_on_server, __pyx_t_7) < 0) __PYX_ERR(20, 109, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130265:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130265 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_none, __pyx_t_7) < 0) __PYX_ERR(20, 118, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130277:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130277 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_deflate, __pyx_t_7) < 0) __PYX_ERR(20, 119, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130289:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130289 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_gzip, __pyx_t_7) < 0) __PYX_ERR(20, 120, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130324:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130324 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_none, __pyx_t_7) < 0) __PYX_ERR(20, 124, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130336:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130336 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_low, __pyx_t_7) < 0) __PYX_ERR(20, 125, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130348:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130348 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_medium, __pyx_t_7) < 0) __PYX_ERR(20, 126, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:130360:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      130360 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_high, __pyx_t_7) < 0) __PYX_ERR(20, 127, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131028:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131028 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_6) < 0) __PYX_ERR(1, 103, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131040:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131040 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_setDaemon, __pyx_t_6) < 0) __PYX_ERR(1, 114, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131052:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131052 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_start, __pyx_t_6) < 0) __PYX_ERR(1, 117, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131064:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131064 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_join, __pyx_t_6) < 0) __PYX_ERR(1, 122, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131186:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131186 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_6) < 0) __PYX_ERR(1, 168, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131198:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131198 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_increment, __pyx_t_6) < 0) __PYX_ERR(1, 172, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131210:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131210 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_decrement, __pyx_t_6) < 0) __PYX_ERR(1, 176, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131222:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131222 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_await_zero_threads, __pyx_t_6) < 0) __PYX_ERR(1, 182, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131260:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131260 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_6) < 0) __PYX_ERR(1, 200, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131330:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131330 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_bool, __pyx_t_7) < 0) __PYX_ERR(6, 61, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131342:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131342 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_len, __pyx_t_7) < 0) __PYX_ERR(6, 64, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131359:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131359 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_repr, __pyx_t_6) < 0) __PYX_ERR(6, 67, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131376:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131376 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_repr_2, __pyx_t_7) < 0) __PYX_ERR(6, 70, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131393:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131393 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_str_2, __pyx_t_6) < 0) __PYX_ERR(6, 73, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131948:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131948 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_CUSTOM_IO_MANAGER, __pyx_n_s_custom_io_manager) < 0) __PYX_ERR(32, 24, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:6470:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       6470 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:131957:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+      131957 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_POLLER, __pyx_n_s_poller) < 0) __PYX_ERR(32, 25, __pyx_L1_error)
+             |       ^~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘int __Pyx_set_iter_next(PyObject*, Py_ssize_t, Py_ssize_t*, PyObject**, int)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:134948:19: error: ‘_PySet_NextEntry’ was not declared in this scope
+      134948 |         int ret = _PySet_NextEntry(iter_obj, ppos, value, &hash);
+             |                   ^~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘PyObject* __Pyx_PyIter_Next2(PyObject*, PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:135128:35: error: ‘_PyObject_NextNotImplemented’ was not declared in this scope; did you mean ‘PyObject_HashNotImplemented’?
+      135128 |         if (unlikely(iternext == &_PyObject_NextNotImplemented))
+             |                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:2612:43: note: in definition of macro ‘unlikely’
+       2612 |   #define unlikely(x) __builtin_expect(!!(x), 0)
+            |                                           ^
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘PyObject* __Pyx_PyGen_Send(PyGenObject*, PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:135986:13: error: ‘_PyGen_SetStopIterationValue’ was not declared in this scope; did you mean ‘__Pyx_PyGen__FetchStopIterationValue’?
+      135986 |             _PyGen_SetStopIterationValue(result);
+             |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+             |             __Pyx_PyGen__FetchStopIterationValue
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘void __Pyx_Coroutine_AwaitableIterError(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:136956:5: error: ‘_PyErr_FormatFromCause’ was not declared in this scope
+      136956 |     _PyErr_FormatFromCause(
+             |     ^~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘PyObject* __Pyx_PyUnicode_Join(PyObject*, Py_ssize_t, Py_ssize_t, Py_UCS4)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:137139:13: error: ‘_PyUnicode_FastCopyCharacters’ was not declared in this scope; did you mean ‘PyUnicode_CopyCharacters’?
+      137139 |             _PyUnicode_FastCopyCharacters(result_uval, char_pos, uval, 0, ulength);
+             |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+             |             PyUnicode_CopyCharacters
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘__pyx_t_4grpc_7_cython_6cygrpc_AioServerStatus __Pyx_PyInt_As_enum____pyx_t_4grpc_7_cython_6cygrpc_AioServerStatus(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:138662:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      138662 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      138663 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      138664 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘grpc_status_code __Pyx_PyInt_As_grpc_status_code(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:138858:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      138858 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      138859 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      138860 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘int __Pyx_PyInt_As_int(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:139054:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      139054 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      139055 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      139056 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘grpc_connectivity_state __Pyx_PyInt_As_grpc_connectivity_state(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:139250:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      139250 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      139251 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      139252 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘grpc_local_connect_type __Pyx_PyInt_As_grpc_local_connect_type(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:139484:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      139484 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      139485 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      139486 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘grpc_completion_type __Pyx_PyInt_As_grpc_completion_type(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:139680:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      139680 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      139681 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      139682 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘grpc_compression_algorithm __Pyx_PyInt_As_grpc_compression_algorithm(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:140180:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      140180 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      140181 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      140182 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘size_t __Pyx_PyInt_As_size_t(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:140376:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      140376 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      140377 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      140378 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘long int __Pyx_PyInt_As_long(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:140572:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      140572 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      140573 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      140574 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘grpc_call_error __Pyx_PyInt_As_grpc_call_error(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:140806:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      140806 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      140807 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      140808 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘unsigned int __Pyx_PyInt_As_unsigned_int(PyObject*)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:141040:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+      141040 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      141041 |                                               bytes, sizeof(val),
+             |                                               ~~~~~~~~~~~~~~~~~~~
+      141042 |                                               is_little, !is_unsigned);
+             |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/python/grpcio/grpc/_cython/cygrpc.cpp:1634:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -D_WIN32_WINNT=1536 -DGRPC_XDS_USER_AGENT_NAME_SUFFIX=\"Python\" -DGRPC_XDS_USER_AGENT_VERSION_SUFFIX=\"1.64.1\" -DHAVE_CONFIG_H=1 -DGRPC_ENABLE_FORK_SUPPORT=1 -DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1 -D__STDC_FORMAT_MACROS "-DPyMODINIT_FUNC=extern \"C\" __attribute__((visibility (\"default\"))) PyObject*" -DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1 -Isrc/python/grpcio -Iinclude -I. -Ithird_party/abseil-cpp -Ithird_party/address_sorting/include -Ithird_party/cares/cares/include -Ithird_party/cares -Ithird_party/cares/cares -Ithird_party/cares/config_linux -Ithird_party/re2 -Ithird_party/boringssl-with-bazel/src/include -Ithird_party/upb -Isrc/core/ext/upb-gen -Isrc/core/ext/upbdefs-gen -Ithird_party/utf8_range -Ithird_party/xxhash -Ithird_party/zlib -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/core/server/server_config_selector_filter.cc -o pyb/temp.linux-x86_64-cpython-313/src/core/server/server_config_selector_filter.o -std=c++14 -fvisibility=hidden -fno-wrapv -fno-exceptions -pthread
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: In function ‘void __pyx_f_4grpc_7_cython_6cygrpc__unified_socket_write(int)’:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:65538:15: warning: ignoring return value of ‘ssize_t write(int, const void*, size_t)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
+      65538 |   (void)(write(__pyx_v_fd, ((char *)"1"), 1));
+            |         ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      src/python/grpcio/grpc/_cython/cygrpc.cpp: At global scope:
+      src/python/grpcio/grpc/_cython/cygrpc.cpp:141496:1: warning: ‘void __Pyx_PyAsyncGen_Fini()’ defined but not used [-Wunused-function]
+      141496 | __Pyx_PyAsyncGen_Fini(void)
+             | ^~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/transport/transport.h:59,
+                       from ./src/core/lib/channel/channel_stack.h:76,
+                       from ./src/core/server/server_config_selector_filter.h:25,
+                       from src/core/server/server_config_selector_filter.cc:15:
+      ./src/core/lib/transport/call_spine.h: In constructor ‘grpc_core::CallSpine::CallSpine(grpc_core::ClientMetadataHandle, grpc_event_engine::experimental::EventEngine*, grpc_core::Arena*, grpc_core::RefCountedPtr<grpc_core::CallArenaAllocator>, grpc_call_context_element*)’:
+      ./src/core/lib/transport/call_spine.h:380:13: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct grpc_call_context_element’; use assignment or value-initialization instead [-Wclass-memaccess]
+        380 |       memset(legacy_context_, 0,
+            |       ~~~~~~^~~~~~~~~~~~~~~~~~~~
+        381 |              sizeof(grpc_call_context_element) * GRPC_CONTEXT_COUNT);
+            |              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from ./src/core/lib/channel/channel_stack.h:62,
+                       from ./src/core/server/server_config_selector_filter.h:25,
+                       from src/core/server/server_config_selector_filter.cc:15:
+      ./src/core/lib/channel/context.h:68:8: note: ‘struct grpc_call_context_element’ declared here
+         68 | struct grpc_call_context_element {
+            |        ^~~~~~~~~~~~~~~~~~~~~~~~~
+      creating None
+      creating None/tmp
+      creating None/tmp/tmp68m0sd9s
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c /tmp/tmp68m0sd9s/a.c -o None/tmp/tmp68m0sd9s/a.o
+      Traceback (most recent call last):
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/spawn.py", line 71, in spawn
+          subprocess.check_call(cmd, env=_inject_macos_ver(env))
+          ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/usr/lib/python3.13/subprocess.py", line 419, in check_call
+          raise CalledProcessError(retcode, cmd)
+      subprocess.CalledProcessError: Command '['/usr/bin/x86_64-linux-gnu-gcc', '-fno-strict-overflow', '-Wsign-compare', '-DNDEBUG', '-g', '-O2', '-Wall', '-g', '-fstack-protector-strong', '-Wformat', '-Werror=format-security', '-g', '-fwrapv', '-O2', '-fPIC', '-D_WIN32_WINNT=1536', '-DGRPC_XDS_USER_AGENT_NAME_SUFFIX="Python"', '-DGRPC_XDS_USER_AGENT_VERSION_SUFFIX="1.64.1"', '-DHAVE_CONFIG_H=1', '-DGRPC_ENABLE_FORK_SUPPORT=1', '-DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1', '-D__STDC_FORMAT_MACROS', '-DPyMODINIT_FUNC=extern "C" __attribute__((visibility ("default"))) PyObject*', '-DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1', '-Isrc/python/grpcio', '-Iinclude', '-I.', '-Ithird_party/abseil-cpp', '-Ithird_party/address_sorting/include', '-Ithird_party/cares/cares/include', '-Ithird_party/cares', '-Ithird_party/cares/cares', '-Ithird_party/cares/config_linux', '-Ithird_party/re2', '-Ithird_party/boringssl-with-bazel/src/include', '-Ithird_party/upb', '-Isrc/core/ext/upb-gen', '-Isrc/core/ext/upbdefs-gen', '-Ithird_party/utf8_range', '-Ithird_party/xxhash', '-Ithird_party/zlib', '-I/media/xeb/GreyArea/projects/exo/venv/include', '-I/usr/include/python3.13', '-c', 'src/python/grpcio/grpc/_cython/cygrpc.cpp', '-o', 'pyb/temp.linux-x86_64-cpython-313/src/python/grpcio/grpc/_cython/cygrpc.o', '-std=c++14', '-fvisibility=hidden', '-fno-wrapv', '-fno-exceptions', '-pthread']' returned non-zero exit status 1.
+      
+      The above exception was the direct cause of the following exception:
+      
+      Traceback (most recent call last):
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/unixccompiler.py", line 191, in _compile
+          self.spawn(compiler_so + cc_args + [src, '-o', obj] + extra_postargs)
+          ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/_spawn_patch.py", line 58, in _commandfile_spawn
+          _classic_spawn(self, command, **kwargs)
+          ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/ccompiler.py", line 1044, in spawn
+          spawn(cmd, dry_run=self.dry_run, **kwargs)
+          ~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/spawn.py", line 77, in spawn
+          raise DistutilsExecError(
+              f"command {_debug(cmd)!r} failed with exit code {err.returncode}"
+          ) from err
+      distutils.errors.DistutilsExecError: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
+      
+      During handling of the above exception, another exception occurred:
+      
+      Traceback (most recent call last):
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/commands.py", line 313, in build_extensions
+          build_ext.build_ext.build_extensions(self)
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build_ext.py", line 479, in build_extensions
+          self._build_extensions_serial()
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build_ext.py", line 505, in _build_extensions_serial
+          self.build_extension(ext)
+          ~~~~~~~~~~~~~~~~~~~~^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/command/build_ext.py", line 254, in build_extension
+          _build_ext.build_extension(self, ext)
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build_ext.py", line 560, in build_extension
+          objects = self.compiler.compile(
+              sources,
+          ...<5 lines>...
+              depends=ext.depends,
+          )
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/_parallel_compile_patch.py", line 70, in _parallel_compile
+          multiprocessing.pool.ThreadPool(BUILD_EXT_COMPILER_JOBS).map(
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
+              _compile_single_file, objects
+              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+          )
+          ^
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 367, in map
+          return self._map_async(func, iterable, mapstar, chunksize).get()
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 774, in get
+          raise self._value
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 125, in worker
+          result = (True, func(*args, **kwds))
+                          ~~~~^^^^^^^^^^^^^^^
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 48, in mapstar
+          return list(map(*args))
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/_parallel_compile_patch.py", line 65, in _compile_single_file
+          self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
+          ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/unixccompiler.py", line 193, in _compile
+          raise CompileError(msg)
+      distutils.errors.CompileError: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
+      
+      During handling of the above exception, another exception occurred:
+      
+      Traceback (most recent call last):
+        File "<string>", line 2, in <module>
+          exec(compile('''
+          ~~~~^^^^^^^^^^^^
+          # This is <pip-setuptools-caller> -- a caller that pip uses to run setup.py
+          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+          ...<31 lines>...
+          exec(compile(setup_py_code, filename, "exec"))
+          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+          ''' % ('/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/setup.py',), "<pip-setuptools-caller>", "exec"))
+          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "<pip-setuptools-caller>", line 34, in <module>
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/setup.py", line 579, in <module>
+          setuptools.setup(
+          ~~~~~~~~~~~~~~~~^
+              name="grpcio",
+              ^^^^^^^^^^^^^^
+          ...<22 lines>...
+              cmdclass=COMMAND_CLASS,
+              ^^^^^^^^^^^^^^^^^^^^^^^
+          )
+          ^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/__init__.py", line 108, in setup
+          return distutils.core.setup(**attrs)
+                 ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/core.py", line 184, in setup
+          return run_commands(dist)
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/core.py", line 200, in run_commands
+          dist.run_commands()
+          ~~~~~~~~~~~~~~~~~^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/dist.py", line 970, in run_commands
+          self.run_command(cmd)
+          ~~~~~~~~~~~~~~~~^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/dist.py", line 956, in run_command
+          super().run_command(command)
+          ~~~~~~~~~~~~~~~~~~~^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/dist.py", line 989, in run_command
+          cmd_obj.run()
+          ~~~~~~~~~~~^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/command/bdist_wheel.py", line 373, in run
+          self.run_command("build")
+          ~~~~~~~~~~~~~~~~^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/cmd.py", line 316, in run_command
+          self.distribution.run_command(command)
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/dist.py", line 956, in run_command
+          super().run_command(command)
+          ~~~~~~~~~~~~~~~~~~~^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/dist.py", line 989, in run_command
+          cmd_obj.run()
+          ~~~~~~~~~~~^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build.py", line 135, in run
+          self.run_command(cmd_name)
+          ~~~~~~~~~~~~~~~~^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/cmd.py", line 316, in run_command
+          self.distribution.run_command(command)
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/dist.py", line 956, in run_command
+          super().run_command(command)
+          ~~~~~~~~~~~~~~~~~~~^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/dist.py", line 989, in run_command
+          cmd_obj.run()
+          ~~~~~~~~~~~^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/command/build_ext.py", line 93, in run
+          _build_ext.run(self)
+          ~~~~~~~~~~~~~~^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build_ext.py", line 359, in run
+          self.build_extensions()
+          ~~~~~~~~~~~~~~~~~~~~~^^
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/commands.py", line 317, in build_extensions
+          raise CommandError(
+              "Failed `build_ext` step:\n{}".format(formatted_exception)
+          )
+      commands.CommandError: Failed `build_ext` step:
+      Traceback (most recent call last):
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/spawn.py", line 71, in spawn
+          subprocess.check_call(cmd, env=_inject_macos_ver(env))
+          ~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/usr/lib/python3.13/subprocess.py", line 419, in check_call
+          raise CalledProcessError(retcode, cmd)
+      subprocess.CalledProcessError: Command '['/usr/bin/x86_64-linux-gnu-gcc', '-fno-strict-overflow', '-Wsign-compare', '-DNDEBUG', '-g', '-O2', '-Wall', '-g', '-fstack-protector-strong', '-Wformat', '-Werror=format-security', '-g', '-fwrapv', '-O2', '-fPIC', '-D_WIN32_WINNT=1536', '-DGRPC_XDS_USER_AGENT_NAME_SUFFIX="Python"', '-DGRPC_XDS_USER_AGENT_VERSION_SUFFIX="1.64.1"', '-DHAVE_CONFIG_H=1', '-DGRPC_ENABLE_FORK_SUPPORT=1', '-DGRPC_DO_NOT_INSTANTIATE_POSIX_POLLER=1', '-D__STDC_FORMAT_MACROS', '-DPyMODINIT_FUNC=extern "C" __attribute__((visibility ("default"))) PyObject*', '-DGRPC_POSIX_FORK_ALLOW_PTHREAD_ATFORK=1', '-Isrc/python/grpcio', '-Iinclude', '-I.', '-Ithird_party/abseil-cpp', '-Ithird_party/address_sorting/include', '-Ithird_party/cares/cares/include', '-Ithird_party/cares', '-Ithird_party/cares/cares', '-Ithird_party/cares/config_linux', '-Ithird_party/re2', '-Ithird_party/boringssl-with-bazel/src/include', '-Ithird_party/upb', '-Isrc/core/ext/upb-gen', '-Isrc/core/ext/upbdefs-gen', '-Ithird_party/utf8_range', '-Ithird_party/xxhash', '-Ithird_party/zlib', '-I/media/xeb/GreyArea/projects/exo/venv/include', '-I/usr/include/python3.13', '-c', 'src/python/grpcio/grpc/_cython/cygrpc.cpp', '-o', 'pyb/temp.linux-x86_64-cpython-313/src/python/grpcio/grpc/_cython/cygrpc.o', '-std=c++14', '-fvisibility=hidden', '-fno-wrapv', '-fno-exceptions', '-pthread']' returned non-zero exit status 1.
+      
+      The above exception was the direct cause of the following exception:
+      
+      Traceback (most recent call last):
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/unixccompiler.py", line 191, in _compile
+          self.spawn(compiler_so + cc_args + [src, '-o', obj] + extra_postargs)
+          ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/_spawn_patch.py", line 58, in _commandfile_spawn
+          _classic_spawn(self, command, **kwargs)
+          ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/ccompiler.py", line 1044, in spawn
+          spawn(cmd, dry_run=self.dry_run, **kwargs)
+          ~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/spawn.py", line 77, in spawn
+          raise DistutilsExecError(
+              f"command {_debug(cmd)!r} failed with exit code {err.returncode}"
+          ) from err
+      distutils.errors.DistutilsExecError: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
+      
+      During handling of the above exception, another exception occurred:
+      
+      Traceback (most recent call last):
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/commands.py", line 313, in build_extensions
+          build_ext.build_ext.build_extensions(self)
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build_ext.py", line 479, in build_extensions
+          self._build_extensions_serial()
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build_ext.py", line 505, in _build_extensions_serial
+          self.build_extension(ext)
+          ~~~~~~~~~~~~~~~~~~~~^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/command/build_ext.py", line 254, in build_extension
+          _build_ext.build_extension(self, ext)
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/command/build_ext.py", line 560, in build_extension
+          objects = self.compiler.compile(
+              sources,
+          ...<5 lines>...
+              depends=ext.depends,
+          )
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/_parallel_compile_patch.py", line 70, in _parallel_compile
+          multiprocessing.pool.ThreadPool(BUILD_EXT_COMPILER_JOBS).map(
+          ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
+              _compile_single_file, objects
+              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+          )
+          ^
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 367, in map
+          return self._map_async(func, iterable, mapstar, chunksize).get()
+                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 774, in get
+          raise self._value
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 125, in worker
+          result = (True, func(*args, **kwds))
+                          ~~~~^^^^^^^^^^^^^^^
+        File "/usr/lib/python3.13/multiprocessing/pool.py", line 48, in mapstar
+          return list(map(*args))
+        File "/tmp/pip-install-qcc69zcd/grpcio_74e5008f358d46cb8bddae67572dc92c/src/python/grpcio/_parallel_compile_patch.py", line 65, in _compile_single_file
+          self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
+          ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+        File "/media/xeb/GreyArea/projects/exo/venv/lib/python3.13/site-packages/setuptools/_distutils/unixccompiler.py", line 193, in _compile
+          raise CompileError(msg)
+      distutils.errors.CompileError: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
+      
+      [end of output]
+  
+  note: This error originates from a subprocess, and is likely not a problem with pip.
+  ERROR: Failed building wheel for grpcio
+  error: subprocess-exited-with-error
+  
+  × python setup.py bdist_wheel did not run successfully.
+  │ exit code: 1
+  ╰─> [1131 lines of output]
+      running bdist_wheel
+      running build
+      running build_py
+      creating build
+      creating build/lib.linux-x86_64-cpython-313
+      creating build/lib.linux-x86_64-cpython-313/grpc_tools
+      copying grpc_tools/grpc_version.py -> build/lib.linux-x86_64-cpython-313/grpc_tools
+      copying grpc_tools/__init__.py -> build/lib.linux-x86_64-cpython-313/grpc_tools
+      copying grpc_tools/command.py -> build/lib.linux-x86_64-cpython-313/grpc_tools
+      copying grpc_tools/protoc.py -> build/lib.linux-x86_64-cpython-313/grpc_tools
+      creating build/lib.linux-x86_64-cpython-313/grpc_tools/_proto
+      creating build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google
+      creating build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/any.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/api.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      creating build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf/compiler
+      copying grpc_tools/_proto/google/protobuf/compiler/plugin.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf/compiler
+      copying grpc_tools/_proto/google/protobuf/descriptor.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/duration.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/empty.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/field_mask.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/source_context.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/struct.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/timestamp.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/type.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      copying grpc_tools/_proto/google/protobuf/wrappers.proto -> build/lib.linux-x86_64-cpython-313/grpc_tools/_proto/google/protobuf
+      running build_ext
+      building 'grpc_tools._protoc_compiler' extension
+      creating build/temp.linux-x86_64-cpython-313
+      creating build/temp.linux-x86_64-cpython-313/grpc_root
+      creating build/temp.linux-x86_64-cpython-313/grpc_root/src
+      creating build/temp.linux-x86_64-cpython-313/grpc_root/src/compiler
+      creating build/temp.linux-x86_64-cpython-313/grpc_tools
+      creating build/temp.linux-x86_64-cpython-313/third_party
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/numeric
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/profiling
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/profiling/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src
+      creating build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/types
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/allowlists
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/php
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/python
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/ruby
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/stubs
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/testing
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/third_party
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/third_party/utf8_range
+      creating build/temp.linux-x86_64-cpython-313/third_party/protobuf/upb_generator
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/cycleclock.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/cycleclock.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/spinlock_wait.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/throw_delegate.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/throw_delegate.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c grpc_root/src/compiler/proto_parser_helper.cc -o build/temp.linux-x86_64-cpython-313/grpc_root/src/compiler/proto_parser_helper.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/symbolize.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/symbolize.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/globals.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/globals.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/fnmatch.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/fnmatch.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/log_sink_set.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/log_sink_set.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/internal/status_internal.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/internal/status_internal.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/ascii.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/ascii.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/log_entry.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/log_entry.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_internal.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_internal.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/cord_buffer.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/cord_buffer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/ostringstream.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/ostringstream.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cordz_info.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cordz_info.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/utf8.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/utf8.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/barrier.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/barrier.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/str_replace.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/str_replace.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/match.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/match.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/low_level_alloc.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/strerror.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/strerror.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c grpc_root/src/compiler/python_generator.cc -o build/temp.linux-x86_64-cpython-313/grpc_root/src/compiler/python_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/arg.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/globals.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/globals.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/examine_stack.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/escaping.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/escaping.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/log_severity.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/log_severity.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/numbers.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/numbers.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/charconv.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/charconv.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/sysinfo.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/sysinfo.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal/raw_hash_set.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/blocking_counter.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/blocking_counter.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/log_sink.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/log_sink.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/str_split.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/str_split.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/raw_logging.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/raw_logging.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/hash/internal/city.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal/city.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/nullguard.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/nullguard.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/initialize.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/initialize.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/proto.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/proto.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/vdso_support.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/log_format.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/log_format.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/spinlock.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/spinlock.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/hash/internal/hash.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal/hash.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/base/internal/thread_identity.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/base/internal/thread_identity.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/string_view.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/string_view.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/numeric/int128.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/numeric/int128.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cordz_functions.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/cord.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/cord.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/output.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/output.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/stacktrace.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/stacktrace.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/str_cat.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/str_cat.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/status.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/status.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/vlog_config.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/vlog_config.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/bind.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/check_op.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/check_op.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/escaping.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/escaping.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/mutex.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/mutex.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/crc32c.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/crc32c.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/duration.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/duration.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cordz_handle.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/substitute.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/substitute.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/debugging/internal/demangle.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/debugging/internal/demangle.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/parser.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/log_message.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/log_message.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/hash/internal/low_level_hash.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/profiling/internal/exponential_biased.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/memutil.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/memutil.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/time.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/time.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/charconv_parse.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/any_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/any_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/cpu_detect.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/str_format/extension.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/arenaz_sampler.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/arenaz_sampler.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/log/internal/conditions.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/log/internal/conditions.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/enum.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/enum.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/enum_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/allowlists/open_enum.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/allowlists/open_enum.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/string_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/notification.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/notification.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/message.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/tracker.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/format.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/format.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/status_payload_printer.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/status_payload_printer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/stringify_sink.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/stringify_sink.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/doc_comment.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/types/bad_optional_access.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/types/bad_optional_access.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/enum_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/enum_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/civil_time.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/civil_time.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/types/bad_variant_access.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/types/bad_variant_access.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/file.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/file.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/code_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/code_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/status/statusor.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/status/statusor.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/arena.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/arena.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/any.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/any.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/java_features.pb.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/java_features.pb.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/message.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/strings/cord_analysis.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/strings/cord_analysis.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/message_field_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/message_field_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/clock.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/clock.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/names.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/names.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc -o build/temp.linux-x86_64-cpython-313/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc: In function ‘bool google::protobuf::compiler::csharp::AllPrintableAscii(absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc:307:20: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        307 |   for(int i = 0; i < text.size(); i++) {
+            |                  ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc: In member function ‘void google::protobuf::compiler::csharp::MessageGenerator::GenerateWriteToBody(google::protobuf::io::Printer*, bool)’:
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc:554:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        554 |   for (int i = 0; i < fields_by_number().size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc: In member function ‘void google::protobuf::compiler::csharp::MessageGenerator::GenerateMainParseLoop(google::protobuf::io::Printer*, bool)’:
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc:701:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        701 |   for (int i = 0; i < fields_by_number().size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc: In member function ‘int google::protobuf::compiler::csharp::MessageGenerator::GetPresenceIndex(const google::protobuf::FieldDescriptor*)’:
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc:741:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        741 |   for (int i = 0; i < fields_by_number().size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc: In function ‘std::string google::protobuf::compiler::cpp::{anonymous}::ConditionalToCheckBitmasks(const std::vector<unsigned int>&, bool, absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:78:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<unsigned int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         78 |   for (int i = 0; i < masks.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      In file included from third_party/abseil-cpp/absl/base/macros.h:36,
+                       from third_party/abseil-cpp/absl/algorithm/container.h:54,
+                       from third_party/abseil-cpp/absl/container/flat_hash_map.h:38,
+                       from third_party/protobuf/src/google/protobuf/compiler/cpp/message.h:23,
+                       from third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:12:
+      third_party/abseil-cpp/absl/log/internal/check_op.h: In instantiation of ‘constexpr std::string* absl::lts_20240116::log_internal::Check_NEImpl(const T1&, const T2&, const char*) [with T1 = int; T2 = unsigned int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:383:3:   required from here
+      third_party/abseil-cpp/absl/log/internal/check_op.h:362:43: warning: comparison of integer expressions of different signedness: ‘const int’ and ‘const unsigned int’ [-Wsign-compare]
+        362 | ABSL_LOG_INTERNAL_CHECK_OP_IMPL(Check_NE, !=)
+      third_party/abseil-cpp/absl/base/optimization.h:179:58: note: in definition of macro ‘ABSL_PREDICT_TRUE’
+        179 | #define ABSL_PREDICT_TRUE(x) (__builtin_expect(false || (x), true))
+            |                                                          ^
+      third_party/abseil-cpp/absl/log/internal/check_op.h:362:1: note: in expansion of macro ‘ABSL_LOG_INTERNAL_CHECK_OP_IMPL’
+        362 | ABSL_LOG_INTERNAL_CHECK_OP_IMPL(Check_NE, !=)
+            | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/arena.cc: In member function ‘void* google::protobuf::internal::SerialArena::AllocateAlignedFallback(size_t)’:
+      third_party/protobuf/src/google/protobuf/arena.cc:194:10: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized]
+        194 |   return ret;
+            |          ^~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc: In member function ‘std::pair<long unsigned int, long unsigned int> google::protobuf::compiler::cpp::MessageGenerator::GenerateOffsets(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:2449:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       2449 |     for (int i = 0; i < has_bit_indices_.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/file.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/file.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc: In member function ‘void google::protobuf::compiler::cpp::MessageGenerator::GenerateSwap(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:3520:25: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare]
+       3520 |       for (int i = 0; i < HasBitsSize(); ++i) {
+            |                       ~~^~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc: In lambda function:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:4302:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       4302 |                   i < ordered_fields.size() || j < sorted_extensions.size();) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:4302:50: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::Descriptor::ExtensionRange*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       4302 |                   i < ordered_fields.size() || j < sorted_extensions.size();) {
+            |                                                ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/message.cc:4303:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::Descriptor::ExtensionRange*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       4303 |                if ((j == sorted_extensions.size()) ||
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum_lite.cc: In member function ‘void google::protobuf::compiler::java::EnumLiteGenerator::Generate(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/enum_lite.cc:65:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         65 |   for (int i = 0; i < canonical_values_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum_lite.cc:88:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::java::EnumLiteGenerator::Alias>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         88 |   for (int i = 0; i < aliases_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum_lite.cc:158:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        158 |   for (int i = 0; i < canonical_values_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/arena_align.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/arena_align.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/code_generator.cc: In member function ‘virtual bool google::protobuf::compiler::CodeGenerator::GenerateAll(const std::vector<const google::protobuf::FileDescriptor*>&, const string&, google::protobuf::compiler::GeneratorContext*, std::string*) const’:
+      third_party/protobuf/src/google/protobuf/compiler/code_generator.cc:42:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FileDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         42 |   for (int i = 0; i < files.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/file.cc: In function ‘bool google::protobuf::compiler::java::{anonymous}::CollectExtensions(const google::protobuf::Message&, google::protobuf::compiler::java::{anonymous}::FieldDescriptorSet*)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/file.cc:78:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         78 |   for (int i = 0; i < fields.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/arenastring.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/arenastring.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/java/message.cc: In member function ‘void google::protobuf::compiler::java::ImmutableMessageGenerator::GenerateDescriptorMethods(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/message.cc:798:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        798 |     for (int i = 0; i < map_fields.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/names.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/kotlin_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/kotlin_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.o -std=c++14 -fno-wrapv -frtti -O1
+      In file included from third_party/protobuf/src/google/protobuf/compiler/java/helpers.h:25,
+                       from third_party/protobuf/src/google/protobuf/compiler/java/context.h:15,
+                       from third_party/protobuf/src/google/protobuf/compiler/java/file.cc:22:
+      third_party/protobuf/src/google/protobuf/io/printer.h: In instantiation of ‘void google::protobuf::io::AnnotationProtoCollector<AnnotationProto>::AddAnnotation(size_t, size_t, const string&, const std::vector<int>&, absl::lts_20240116::optional<google::protobuf::io::AnnotationCollector::Semantic>) [with AnnotationProto = google::protobuf::GeneratedCodeInfo; size_t = long unsigned int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/io/printer.h:123:8:   required from here
+      third_party/protobuf/src/google/protobuf/io/printer.h:127:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        127 |     for (int i = 0; i < path.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc: In function ‘bool google::protobuf::compiler::objectivec::{anonymous}::ReadLine(absl::lts_20240116::string_view*, absl::lts_20240116::string_view*)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc:48:25: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         48 |   for (int len = 0; len < input->size(); ++len) {
+            |                     ~~~~^~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc: In function ‘void google::protobuf::compiler::objectivec::{anonymous}::RemoveComment(absl::lts_20240116::string_view*)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/line_consumer.cc:61:14: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+         61 |   if (offset != absl::string_view::npos) {
+            |       ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/command_line_interface.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/enum.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/enum.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c grpc_tools/_protoc_compiler.cpp -o build/temp.linux-x86_64-cpython-313/grpc_tools/_protoc_compiler.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/names.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/names.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_doc_comment.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/map_field.o -std=c++14 -fno-wrapv -frtti -O1
+      grpc_tools/_protoc_compiler.cpp:1202:72: warning: ‘Py_UNICODE’ is deprecated [-Wdeprecated-declarations]
+       1202 | static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) {
+            |                                                                        ^
+      In file included from /usr/include/python3.13/unicodeobject.h:1014,
+                       from /usr/include/python3.13/Python.h:75,
+                       from grpc_tools/_protoc_compiler.cpp:342:
+      /usr/include/python3.13/cpython/unicodeobject.h:10:37: note: declared here
+         10 | Py_DEPRECATED(3.13) typedef wchar_t Py_UNICODE;
+            |                                     ^~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp: In function ‘size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE*)’:
+      grpc_tools/_protoc_compiler.cpp:1203:23: warning: ‘Py_UNICODE’ is deprecated [-Wdeprecated-declarations]
+       1203 |     const Py_UNICODE *u_end = u;
+            |                       ^~~~~
+      In file included from /usr/include/python3.13/unicodeobject.h:1014,
+                       from /usr/include/python3.13/Python.h:75,
+                       from grpc_tools/_protoc_compiler.cpp:342:
+      /usr/include/python3.13/cpython/unicodeobject.h:10:37: note: declared here
+         10 | Py_DEPRECATED(3.13) typedef wchar_t Py_UNICODE;
+            |                                     ^~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp: In function ‘int __pyx_pymod_exec__protoc_compiler(PyObject*)’:
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6658:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6658 |   if (__Pyx_SetNameInClass(__pyx_t_3, __pyx_n_s_init, __pyx_t_4) < 0) __PYX_ERR(0, 60, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/extension.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/extension.o -std=c++14 -fno-wrapv -frtti -O1
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6670:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6670 |   if (__Pyx_SetNameInClass(__pyx_t_3, __pyx_n_s_repr, __pyx_t_4) < 0) __PYX_ERR(0, 66, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6682:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6682 |   if (__Pyx_SetNameInClass(__pyx_t_3, __pyx_n_s_str, __pyx_t_4) < 0) __PYX_ERR(0, 70, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.o -std=c++14 -fno-wrapv -frtti -O1
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6721:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6721 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_init, __pyx_t_3) < 0) __PYX_ERR(0, 75, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6733:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6733 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_repr, __pyx_t_3) < 0) __PYX_ERR(0, 81, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6750:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6750 |   if (__Pyx_SetNameInClass(__pyx_t_1, __pyx_n_s_str, __pyx_t_3) < 0) __PYX_ERR(0, 85, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6793:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6793 |   if (__Pyx_SetNameInClass(__pyx_t_3, __pyx_n_s_init, __pyx_t_4) < 0) __PYX_ERR(0, 89, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6805:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6805 |   if (__Pyx_SetNameInClass(__pyx_t_3, __pyx_n_s_errors, __pyx_t_4) < 0) __PYX_ERR(0, 92, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6817:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6817 |   if (__Pyx_SetNameInClass(__pyx_t_3, __pyx_n_s_repr, __pyx_t_4) < 0) __PYX_ERR(0, 95, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:1820:38: error: ‘_PyDict_SetItem_KnownHash’ was not declared in this scope; did you mean ‘_PyDict_GetItem_KnownHash’?
+       1820 |     (likely(PyDict_CheckExact(ns)) ? _PyDict_SetItem_KnownHash(ns, name, value, ((PyASCIIObject *) name)->hash) : PyObject_SetItem(ns, name, value))
+            |                                      ^~~~~~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp:6829:7: note: in expansion of macro ‘__Pyx_SetNameInClass’
+       6829 |   if (__Pyx_SetNameInClass(__pyx_t_3, __pyx_n_s_str, __pyx_t_4) < 0) __PYX_ERR(0, 98, __pyx_L1_error)
+            |       ^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc: In member function ‘void google::protobuf::compiler::java::SharedCodeGenerator::GenerateDescriptors(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc:147:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        147 |   for (int i = 0; i < file_data.size(); i += kBytesPerLine) {
+            |                   ~~^~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc:188:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::pair<std::__cxx11::basic_string<char>, std::__cxx11::basic_string<char> > >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        188 |     for (int i = 0; i < dependencies.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp: In function ‘size_t __Pyx_PyInt_As_size_t(PyObject*)’:
+      grpc_tools/_protoc_compiler.cpp:9187:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+       9187 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+            |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+       9188 |                                               bytes, sizeof(val),
+            |                                               ~~~~~~~~~~~~~~~~~~~
+       9189 |                                               is_little, !is_unsigned);
+            |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from grpc_tools/_protoc_compiler.cpp:342:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp: In function ‘long int __Pyx_PyInt_As_long(PyObject*)’:
+      grpc_tools/_protoc_compiler.cpp:9421:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+       9421 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+            |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+       9422 |                                               bytes, sizeof(val),
+            |                                               ~~~~~~~~~~~~~~~~~~~
+       9423 |                                               is_little, !is_unsigned);
+            |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from grpc_tools/_protoc_compiler.cpp:342:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp: In function ‘int __Pyx_PyInt_As_int(PyObject*)’:
+      grpc_tools/_protoc_compiler.cpp:9617:46: error: too few arguments to function ‘int _PyLong_AsByteArray(PyLongObject*, unsigned char*, size_t, int, int, int)’
+       9617 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+            |                           ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+       9618 |                                               bytes, sizeof(val),
+            |                                               ~~~~~~~~~~~~~~~~~~~
+       9619 |                                               is_little, !is_unsigned);
+            |                                               ~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from grpc_tools/_protoc_compiler.cpp:342:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      grpc_tools/_protoc_compiler.cpp: In function ‘PyObject* __Pyx_PyGen_Send(PyGenObject*, PyObject*)’:
+      grpc_tools/_protoc_compiler.cpp:10205:13: error: ‘_PyGen_SetStopIterationValue’ was not declared in this scope; did you mean ‘__Pyx_PyGen__FetchStopIterationValue’?
+      10205 |             _PyGen_SetStopIterationValue(result);
+            |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+            |             __Pyx_PyGen__FetchStopIterationValue
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/parser.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/parser.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc: In function ‘std::string google::protobuf::compiler::objectivec::{anonymous}::UnderscoresToCamelCase(absl::lts_20240116::string_view, bool)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc:269:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        269 |   for (int i = 0; i < input.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc: In function ‘std::string google::protobuf::compiler::objectivec::UnCamelCaseEnumShortName(absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc:849:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        849 |   for (int i = 0; i < name.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc: In function ‘std::string google::protobuf::compiler::objectivec::UnCamelCaseFieldName(absl::lts_20240116::string_view, const google::protobuf::FieldDescriptor*)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc:1151:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1151 |     for (int i = 0; i < worker.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc: In member function ‘virtual bool google::protobuf::compiler::objectivec::{anonymous}::PackageToPrefixesCollector::ConsumeLine(absl::lts_20240116::string_view, std::string*)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/names.cc:1203:14: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+       1203 |   if (offset == absl::string_view::npos) {
+            |       ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/map_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/map_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/primitive_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/primitive_field.o -std=c++14 -fno-wrapv -frtti -O1
+      In file included from third_party/protobuf/src/google/protobuf/compiler/java/helpers.h:25,
+                       from third_party/protobuf/src/google/protobuf/compiler/java/shared_code_generator.cc:17:
+      third_party/protobuf/src/google/protobuf/io/printer.h: In instantiation of ‘void google::protobuf::io::AnnotationProtoCollector<AnnotationProto>::AddAnnotation(size_t, size_t, const string&, const std::vector<int>&, absl::lts_20240116::optional<google::protobuf::io::AnnotationCollector::Semantic>) [with AnnotationProto = google::protobuf::GeneratedCodeInfo; size_t = long unsigned int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/io/printer.h:123:8:   required from here
+      third_party/protobuf/src/google/protobuf/io/printer.h:127:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        127 |     for (int i = 0; i < path.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/plugin.pb.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/csharp/names.cc: In function ‘std::string google::protobuf::compiler::csharp::UnderscoresToCamelCase(absl::lts_20240116::string_view, bool, bool)’:
+      third_party/protobuf/src/google/protobuf/compiler/csharp/names.cc:143:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        143 |   for (int i = 0; i < input.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum.cc: In member function ‘void google::protobuf::compiler::java::EnumGenerator::Generate(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/enum.cc:74:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         74 |   for (int i = 0; i < canonical_values_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum.cc:82:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         82 |   for (int i = 0; i < canonical_values_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum.cc:121:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::java::EnumGenerator::Alias>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        121 |   for (int i = 0; i < aliases_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum.cc:204:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        204 |   for (int i = 0; i < canonical_values_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/enum.cc: In member function ‘bool google::protobuf::compiler::java::EnumGenerator::CanUseEnumValues()’:
+      third_party/protobuf/src/google/protobuf/compiler/java/enum.cc:378:32: warning: comparison of integer expressions of different signedness: ‘std::vector<const google::protobuf::EnumValueDescriptor*>::size_type’ {aka ‘long unsigned int’} and ‘int’ [-Wsign-compare]
+        378 |   if (canonical_values_.size() != descriptor_->value_count()) {
+            |       ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      In file included from third_party/protobuf/src/google/protobuf/compiler/java/helpers.h:25,
+                       from third_party/protobuf/src/google/protobuf/compiler/java/kotlin_generator.cc:13:
+      third_party/protobuf/src/google/protobuf/io/printer.h: In instantiation of ‘void google::protobuf::io::AnnotationProtoCollector<AnnotationProto>::AddAnnotation(size_t, size_t, const string&, const std::vector<int>&, absl::lts_20240116::optional<google::protobuf::io::AnnotationCollector::Semantic>) [with AnnotationProto = google::protobuf::GeneratedCodeInfo; size_t = long unsigned int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/io/printer.h:123:8:   required from here
+      third_party/protobuf/src/google/protobuf/io/printer.h:127:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        127 |     for (int i = 0; i < path.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In function ‘bool google::protobuf::compiler::{anonymous}::TryCreateParentDirectory(const string&, const string&)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:181:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        181 |   for (int i = 0; i < parts.size() - 1; i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/enum_field.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘void google::protobuf::compiler::CommandLineInterface::MemoryOutputStream::InsertShiftedInfo(const string&, size_t, size_t, google::protobuf::GeneratedCodeInfo&)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:737:16: warning: comparison of integer expressions of different signedness: ‘size_t’ {aka ‘long unsigned int’} and ‘int32_t’ {aka ‘int’} [-Wsign-compare]
+        737 |     for (; pos < source_annotation.end() && pos < insertion_content.size() - 1;
+            |            ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:740:17: warning: comparison of integer expressions of different signedness: ‘size_t’ {aka ‘long unsigned int’} and ‘int32_t’ {aka ‘int’} [-Wsign-compare]
+        740 |         if (pos >= source_annotation.begin()) {
+            |             ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘void google::protobuf::compiler::CommandLineInterface::MemoryOutputStream::UpdateMetadata(const string&, size_t, size_t, size_t)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:800:35: warning: comparison of integer expressions of different signedness: ‘int32_t’ {aka ‘int’} and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare]
+        800 |     if (source_annotation.begin() >= insertion_offset && !crossed_offset) {
+            |         ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In destructor ‘virtual google::protobuf::compiler::CommandLineInterface::MemoryOutputStream::~MemoryOutputStream()’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:908:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        908 |   for (int i = 0; i < data_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘int google::protobuf::compiler::CommandLineInterface::Run(int, const char* const*)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:1321:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::CommandLineInterface::OutputDirective>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1321 |     for (int i = 0; i < output_directives_.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:1408:27: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FileDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1408 |         for (int i = 0; i < parsed_files.size(); ++i) {
+            |                         ~~^~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘bool google::protobuf::compiler::CommandLineInterface::InitializeDiskSourceTree(google::protobuf::compiler::DiskSourceTree*, google::protobuf::DescriptorDatabase*)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:1432:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::pair<std::__cxx11::basic_string<char>, std::__cxx11::basic_string<char> > >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1432 |   for (int i = 0; i < proto_path_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/file.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘google::protobuf::compiler::CommandLineInterface::ParseArgumentStatus google::protobuf::compiler::CommandLineInterface::ParseArguments(int, const char* const*)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:1821:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1821 |   for (int i = 0; i < arguments.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:1826:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1826 |       if (i + 1 == arguments.size() || arguments[i + 1][0] == '-') {
+            |           ~~~~~~^~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘google::protobuf::compiler::CommandLineInterface::ParseArgumentStatus google::protobuf::compiler::CommandLineInterface::InterpretArgument(const string&, const string&)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:2067:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       2067 |     for (int i = 0; i < parts.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/message_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/message_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘bool google::protobuf::compiler::CommandLineInterface::GenerateDependencyManifestFile(const std::vector<const google::protobuf::FileDescriptor*>&, const GeneratorContextMap&, google::protobuf::compiler::DiskSourceTree*)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:2690:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FileDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       2690 |   for (int i = 0; i < parsed_files.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:2701:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       2701 |     for (int i = 0; i < relative_output_filenames.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘bool google::protobuf::compiler::CommandLineInterface::WriteDescriptorSet(const std::vector<const google::protobuf::FileDescriptor*>&)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:2964:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FileDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       2964 |     for (int i = 0; i < parsed_files.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:2979:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FileDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       2979 |   for (int i = 0; i < parsed_files.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/parser.cc: In function ‘bool google::protobuf::compiler::{anonymous}::IsNumberFollowUnderscore(absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/parser.cc:151:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        151 |   for (int i = 1; i < name.length(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/parser.cc: In member function ‘void google::protobuf::compiler::Parser::LocationRecorder::AttachComments(std::string*, std::string*, std::vector<std::__cxx11::basic_string<char> >*) const’:
+      third_party/protobuf/src/google/protobuf/compiler/parser.cc:512:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        512 |   for (int i = 0; i < detached_comments->size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/importer.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/importer.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc: In member function ‘void google::protobuf::compiler::CommandLineInterface::PrintFreeFieldNumbers(const google::protobuf::Descriptor*)’:
+      third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc:3195:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::Descriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       3195 |   for (int i = 0; i < nested_messages.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/string_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/string_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/map_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/map_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/message_builder.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/message_builder.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/extension.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/extension.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/oneof.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/java/generator.cc: In member function ‘virtual bool google::protobuf::compiler::java::JavaGenerator::Generate(const google::protobuf::FileDescriptor*, const string&, google::protobuf::compiler::GeneratorContext*, std::string*) const’:
+      third_party/protobuf/src/google/protobuf/compiler/java/generator.cc:175:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        175 |     for (int i = 0; i < all_files.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/generator.cc:186:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        186 |     for (int i = 0; i < all_annotations.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/message.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/enum_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/enum_field.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/importer.cc: In member function ‘google::protobuf::compiler::DiskSourceTree::DiskFileToVirtualFileResult google::protobuf::compiler::DiskSourceTree::DiskFileToVirtualFile(absl::lts_20240116::string_view, std::string*, std::string*)’:
+      third_party/protobuf/src/google/protobuf/compiler/importer.cc:377:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::DiskSourceTree::Mapping>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        377 |   for (int i = 0; i < mappings_.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/extension_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/extension_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      In file included from third_party/protobuf/src/google/protobuf/compiler/java/helpers.h:25,
+                       from third_party/protobuf/src/google/protobuf/compiler/java/generator.cc:24:
+      third_party/protobuf/src/google/protobuf/io/printer.h: In instantiation of ‘void google::protobuf::io::AnnotationProtoCollector<AnnotationProto>::AddAnnotation(size_t, size_t, const string&, const std::vector<int>&, absl::lts_20240116::optional<google::protobuf::io::AnnotationCollector::Semantic>) [with AnnotationProto = google::protobuf::GeneratedCodeInfo; size_t = long unsigned int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/io/printer.h:123:8:   required from here
+      third_party/protobuf/src/google/protobuf/io/printer.h:127:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        127 |     for (int i = 0; i < path.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/python/generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/python/generator.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In constructor ‘google::protobuf::compiler::cpp::FileGenerator::FileGenerator(const google::protobuf::FileDescriptor*, const google::protobuf::compiler::cpp::Options&)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:118:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::Descriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        118 |   for (int i = 0; i < msgs.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In member function ‘void google::protobuf::compiler::cpp::FileGenerator::GenerateGlobalSource(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:884:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::EnumGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        884 |   for (int i = 0; i < enum_generators_.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In member function ‘void google::protobuf::compiler::cpp::FileGenerator::GenerateSource(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:948:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        948 |     for (int i = 0; i < message_generators_.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:968:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::EnumGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        968 |     for (int i = 0; i < enum_generators_.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:973:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        973 |     for (int i = 0; i < message_generators_.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:982:25: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::ServiceGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        982 |       for (int i = 0; i < service_generators_.size(); ++i) {
+            |                       ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:992:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::ExtensionGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        992 |     for (int i = 0; i < extension_generators_.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1008:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1008 |     for (int i = 0; i < message_generators_.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In lambda function:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1084:34: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1084 |                for (int i = 0; i < message_generators_.size(); ++i) {
+            |                                ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In lambda function:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1091:34: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1091 |                for (int i = 0; i < message_generators_.size(); ++i) {
+            |                                ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In member function ‘void google::protobuf::compiler::cpp::FileGenerator::GenerateMessageDefinitions(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1666:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1666 |   for (int i = 0; i < message_generators_.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In member function ‘void google::protobuf::compiler::cpp::FileGenerator::GenerateEnumDefinitions(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1676:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::EnumGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1676 |   for (int i = 0; i < enum_generators_.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In member function ‘void google::protobuf::compiler::cpp::FileGenerator::GenerateServiceDefinitions(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1686:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::ServiceGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1686 |   for (int i = 0; i < service_generators_.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In member function ‘void google::protobuf::compiler::cpp::FileGenerator::GenerateInlineFunctionDefinitions(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1719:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1719 |   for (int i = 0; i < message_generators_.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc: In member function ‘std::vector<const google::protobuf::Descriptor*> google::protobuf::compiler::cpp::FileGenerator::MessagesInTopologicalOrder() const’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/file.cc:1752:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::unique_ptr<google::protobuf::compiler::cpp::MessageGenerator> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1752 |   for (int i = 0; i < message_generators_.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/generator_factory.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/generator_factory.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/context.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/context.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/extension.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/java/message_builder.cc: In member function ‘void google::protobuf::compiler::java::MessageBuilderGenerator::GenerateDescriptorMethods(google::protobuf::io::Printer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/message_builder.cc:207:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        207 |     for (int i = 0; i < map_fields.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/message_builder.cc:233:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        233 |     for (int i = 0; i < map_fields.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/php/names.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/php/names.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc: In function ‘std::string google::protobuf::compiler::csharp::ShoutyToPascalCase(absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc:107:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        107 |   for (int i = 0; i < input.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/message_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/message_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/primitive_field_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/primitive_field_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/python/generator.cc: In member function ‘void google::protobuf::compiler::python::Generator::PrintMessages() const’:
+      third_party/protobuf/src/google/protobuf/compiler/python/generator.cc:860:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<std::__cxx11::basic_string<char> >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        860 |     for (int j = 0; j < to_register.size(); ++j) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~
+      In file included from third_party/abseil-cpp/absl/base/macros.h:36,
+                       from third_party/abseil-cpp/absl/strings/string_view.h:43,
+                       from third_party/protobuf/src/google/protobuf/compiler/python/generator.h:19,
+                       from third_party/protobuf/src/google/protobuf/compiler/python/generator.cc:22:
+      third_party/abseil-cpp/absl/log/internal/check_op.h: In instantiation of ‘constexpr std::string* absl::lts_20240116::log_internal::Check_GEImpl(const T1&, const T2&, const char*) [with T1 = long unsigned int; T2 = int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/compiler/python/generator.cc:1282:3:   required from ‘void google::protobuf::compiler::python::Generator::PrintSerializedPbInterval(const DescriptorProtoT&, absl::lts_20240116::string_view) const [with DescriptorProtoT = google::protobuf::EnumDescriptorProto]’
+      third_party/protobuf/src/google/protobuf/compiler/python/generator.cc:1330:30:   required from here
+      third_party/abseil-cpp/absl/log/internal/check_op.h:365:43: warning: comparison of integer expressions of different signedness: ‘const long unsigned int’ and ‘const int’ [-Wsign-compare]
+        365 | ABSL_LOG_INTERNAL_CHECK_OP_IMPL(Check_GE, >=)
+      third_party/abseil-cpp/absl/base/optimization.h:179:58: note: in definition of macro ‘ABSL_PREDICT_TRUE’
+        179 | #define ABSL_PREDICT_TRUE(x) (__builtin_expect(false || (x), true))
+            |                                                          ^
+      third_party/abseil-cpp/absl/log/internal/check_op.h:365:1: note: in expansion of macro ‘ABSL_LOG_INTERNAL_CHECK_OP_IMPL’
+        365 | ABSL_LOG_INTERNAL_CHECK_OP_IMPL(Check_GE, >=)
+            | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/primitive_field.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/java/context.cc: In member function ‘void google::protobuf::compiler::java::Context::InitializeFieldGeneratorInfoForFields(const std::vector<const google::protobuf::FieldDescriptor*>&)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/context.cc:121:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        121 |   for (int i = 0; i < fields.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/context.cc:124:27: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        124 |     for (int j = i + 1; j < fields.size(); ++j) {
+            |                         ~~^~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/context.cc:144:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        144 |   for (int i = 0; i < fields.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_reflection_class.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/message_serialization.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/string_field_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/string_field_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/php/php_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/helpers.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/message_builder_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/message_builder_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/retention.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/retention.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/map_field_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/map_field_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/helpers.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/helpers.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/helpers.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/enum_field_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/enum_field_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_scalar.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_scalar.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/crate_mapping.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/crate_mapping.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc: In function ‘std::string google::protobuf::compiler::java::UnderscoresToCamelCase(absl::lts_20240116::string_view, bool)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc:118:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        118 |   for (int i = 0; i < input.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc: In function ‘bool google::protobuf::compiler::java::AllAscii(absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/java/helpers.cc:453:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        453 |   for (int i = 0; i < text.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In function ‘std::string google::protobuf::compiler::php::{anonymous}::PhpName(absl::lts_20240116::string_view, const google::protobuf::compiler::php::Options&)’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:175:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        175 |   for (int i = 0; i < full_name.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In function ‘std::string google::protobuf::compiler::php::{anonymous}::GeneratedMetadataFileName(const google::protobuf::FileDescriptor*, const google::protobuf::compiler::php::Options&)’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:259:24: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+        259 |     while (first_index != std::string::npos) {
+            |            ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:270:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+        270 |   if (file_name_start == std::string::npos) {
+            |       ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In function ‘std::string google::protobuf::compiler::php::{anonymous}::UnderscoresToCamelCase(absl::lts_20240116::string_view, bool)’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:457:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        457 |   for (int i = 0; i < name.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In function ‘void google::protobuf::compiler::php::{anonymous}::GenerateMetadataFile(const google::protobuf::FileDescriptor*, const google::protobuf::compiler::php::Options&, google::protobuf::compiler::GeneratorContext*)’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1099:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+       1099 |   if (lastindex != std::string::npos) {
+            |       ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In function ‘bool google::protobuf::compiler::php::{anonymous}::GenerateEnumFile(const google::protobuf::FileDescriptor*, const google::protobuf::EnumDescriptor*, const google::protobuf::compiler::php::Options&, google::protobuf::compiler::GeneratorContext*, std::string*)’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1142:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+       1142 |   if (lastindex != std::string::npos) {
+            |       ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1153:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+       1153 |   if (lastindex != std::string::npos) {
+            |       ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In function ‘bool google::protobuf::compiler::php::{anonymous}::GenerateMessageFile(const google::protobuf::FileDescriptor*, const google::protobuf::Descriptor*, const google::protobuf::compiler::php::Options&, google::protobuf::compiler::GeneratorContext*, std::string*)’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1268:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+       1268 |   if (lastindex != std::string::npos) {
+            |       ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1276:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+       1276 |   if (lastindex != std::string::npos) {
+            |       ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In function ‘void google::protobuf::compiler::php::{anonymous}::GenerateDocCommentBodyForLocation(google::protobuf::io::Printer*, const google::protobuf::SourceLocation&, bool, int)’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1448:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<absl::lts_20240116::string_view>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1448 |     for (int i = 0; i < lines.size(); i++) {
+            |                     ~~^~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In instantiation of ‘std::string google::protobuf::compiler::php::{anonymous}::GeneratedClassFileName(const DescriptorType*, const google::protobuf::compiler::php::Options&) [with DescriptorType = google::protobuf::EnumDescriptor; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1132:48:   required from here
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:294:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        294 |   for (int i = 0; i < result.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc: In instantiation of ‘std::string google::protobuf::compiler::php::{anonymous}::GeneratedClassFileName(const DescriptorType*, const google::protobuf::compiler::php::Options&) [with DescriptorType = google::protobuf::Descriptor; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:1258:48:   required from here
+      third_party/protobuf/src/google/protobuf/compiler/php/php_generator.cc:294:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/name_resolver.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/naming.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/naming.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/message_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/service.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/service.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/subprocess.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/subprocess.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data.cc: In static member function ‘static std::string google::protobuf::compiler::objectivec::TextFormatDecodeData::DecodeDataForString(const string&, const string&)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data.cc:200:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        200 |   for (int y = 0; y < desired_output.size(); y++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data.cc:207:11: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        207 |     if (x >= input_for_decode.size()) {
+            |         ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/text_format_decode_data.cc:219:9: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        219 |   if (x != input_for_decode.size()) {
+            |       ~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/descriptor.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/descriptor.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/map.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/map.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/extension_set.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/extension_set.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/python/helpers.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/python/helpers.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/generated_message_bases.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/generated_message_bases.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/subprocess.cc: In member function ‘bool google::protobuf::compiler::Subprocess::Communicate(const google::protobuf::Message&, google::protobuf::Message*, std::string*)’:
+      third_party/protobuf/src/google/protobuf/compiler/subprocess.cc:412:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        412 |       if (input_pos == input_data.size()) {
+            |           ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/main.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/main.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/java/message_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/java/message_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/primitive_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/enum.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/enum.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/versions.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/versions.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_string.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_string.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc: In member function ‘virtual bool google::protobuf::compiler::objectivec::{anonymous}::ProtoFrameworkCollector::ConsumeLine(absl::lts_20240116::string_view, std::string*)’:
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc:52:14: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+         52 |   if (offset == absl::string_view::npos) {
+            |       ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc:63:16: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         63 |   while (start < proto_file_list.length()) {
+            |          ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/objectivec/import_writer.cc:65:16: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_type’ {aka ‘const long unsigned int’} [-Wsign-compare]
+         65 |     if (offset == absl::string_view::npos) {
+            |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc: In function ‘std::string google::protobuf::compiler::ruby::PackageToModule(absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc:76:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         76 |   for (int i = 0; i < name.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/generated_message_reflection.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/generated_message_reflection.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/internal_message_util.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/internal_message_util.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/printer.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/printer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/zero_copy_stream.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/oneof.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/oneof.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/map_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/map_field.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc: In function ‘void google::protobuf::compiler::cpp::OptimizeLayoutHelper(std::vector<const google::protobuf::FieldDescriptor*>*, const google::protobuf::compiler::cpp::Options&, google::protobuf::compiler::cpp::MessageSCCAnalyzer*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc:89:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::FieldDescriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         89 |   for (int i = 0; i < fields->size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc:128:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::cpp::{anonymous}::FieldGroup>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        128 |     for (int i = 0; i < aligned_to_1[f].size(); i += 4) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc:130:25: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::cpp::{anonymous}::FieldGroup>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        130 |       for (int j = i; j < aligned_to_1[f].size() && j < i + 4; ++j) {
+            |                       ~~^~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc:142:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::cpp::{anonymous}::FieldGroup>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        142 |     for (int i = 0; i < aligned_to_4[f].size(); i += 2) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc:144:25: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::cpp::{anonymous}::FieldGroup>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        144 |       for (int j = i; j < aligned_to_4[f].size() && j < i + 2; ++j) {
+            |                       ~~^~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc:147:13: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::cpp::{anonymous}::FieldGroup>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        147 |       if (i == aligned_to_4[f].size() - 1) {
+            |           ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/padding_optimizer.cc:167:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<google::protobuf::compiler::cpp::{anonymous}::FieldGroup>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        167 |     for (int i = 0; i < aligned_to_8[f].size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/port.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/port.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/repeated_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/repeated_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/repeated_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/repeated_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/raw_ptr.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/raw_ptr.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/zip_writer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/cord_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/field_generators/cord_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/plugin.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/plugin.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/reflection_mode.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/reflection_mode.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/reflection_ops.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/reflection_ops.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/testing/file.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/testing/file.o -std=c++14 -fno-wrapv -frtti -O1
+      In file included from third_party/protobuf/src/google/protobuf/generated_message_tctable_decl.h:23,
+                       from third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc:23:
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1077:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1077 | ParseContext::ParseLengthDelimitedInlined(const char* ptr, const Func& func) {
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/parse_context.h:1091:1: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+       1091 | ParseContext::ParseGroupInlined(const char* ptr, uint32_t start_tag,
+            | ^~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc:838:36: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+        838 | PROTOBUF_ALWAYS_INLINE const char* TcParser::FastVarintS1(
+            |                                    ^~~~~~~~
+      third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc:838:36: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+      third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc:761:29: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+        761 | PROTOBUF_ALWAYS_INLINE bool EnumIsValidAux(int32_t val, uint16_t xform_val,
+            |                             ^~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/generated_message_tctable_lite.cc:749:29: warning: ‘always_inline’ function might not be inlinable [-Wattributes]
+        749 | PROTOBUF_ALWAYS_INLINE void PrefetchEnumData(uint16_t xform_val,
+            |                             ^~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessor_case.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessor_case.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/extension_set_heavy.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/extension_set_heavy.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/accessors.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/coded_stream.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/coded_stream.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc: In function ‘uint32_t google::protobuf::compiler::ComputeCRC32(const string&)’:
+      third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc:74:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         74 |   for (int i = 0; i < buf.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/cpp_features.pb.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/cpp_features.pb.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/repeated_ptr_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/repeated_ptr_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/parse_function_generator.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/text_format.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/text_format.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/unsupported_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/unsupported_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/gzip_stream.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/gzip_stream.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/io_win32.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/io_win32.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/wire_format_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/wire_format_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/message.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/wire_format_lite.cc:669: warning: ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]
+        669 | #pragma clang loop vectorize(disable) unroll(disable) interleave(disable)
+            |
+      third_party/protobuf/src/google/protobuf/wire_format_lite.cc:711: warning: ignoring ‘#pragma clang loop’ [-Wunknown-pragmas]
+        711 | #pragma clang loop vectorize(disable) unroll(disable) interleave(disable)
+            |
+      In file included from third_party/protobuf/src/google/protobuf/compiler/python/pyi_generator.cc:25:
+      third_party/protobuf/src/google/protobuf/io/printer.h: In instantiation of ‘void google::protobuf::io::AnnotationProtoCollector<AnnotationProto>::AddAnnotation(size_t, size_t, const string&, const std::vector<int>&, absl::lts_20240116::optional<google::protobuf::io::AnnotationCollector::Semantic>) [with AnnotationProto = google::protobuf::GeneratedCodeInfo; size_t = long unsigned int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/io/printer.h:123:8:   required from here
+      third_party/protobuf/src/google/protobuf/io/printer.h:127:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        127 |     for (int i = 0; i < path.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/map.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/map.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/service.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/service.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/feature_resolver.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/feature_resolver.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/stubs/common.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/stubs/common.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/strtod.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/strtod.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/accessors/singular_message.o -std=c++14 -fno-wrapv -frtti -O1
+      In file included from third_party/protobuf/src/google/protobuf/compiler/cpp/enum.h:19,
+                       from third_party/protobuf/src/google/protobuf/compiler/cpp/file.h:24,
+                       from third_party/protobuf/src/google/protobuf/compiler/cpp/generator.cc:28:
+      third_party/protobuf/src/google/protobuf/io/printer.h: In instantiation of ‘void google::protobuf::io::AnnotationProtoCollector<AnnotationProto>::AddAnnotation(size_t, size_t, const string&, const std::vector<int>&, absl::lts_20240116::optional<google::protobuf::io::AnnotationCollector::Semantic>) [with AnnotationProto = google::protobuf::GeneratedCodeInfo; size_t = long unsigned int; std::string = std::__cxx11::basic_string<char>]’:
+      third_party/protobuf/src/google/protobuf/io/printer.h:123:8:   required from here
+      third_party/protobuf/src/google/protobuf/io/printer.h:127:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<int>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        127 |     for (int i = 0; i < path.size(); ++i) {
+            |                     ~~^~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.cc: In member function ‘std::string google::protobuf::compiler::rust::RelativePath::Relative(const google::protobuf::compiler::rust::RelativePath&) const’:
+      third_party/protobuf/src/google/protobuf/compiler/rust/relative_path.cc:66:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<absl::lts_20240116::string_view>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+         66 |   for (int i = 0; i < current_segments.size(); ++i) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/third_party/utf8_range/utf8_range.c -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/third_party/utf8_range/utf8_range.o -fno-wrapv -frtti -O1
+      cc1: warning: command-line option ‘-frtti’ is valid for C++/D/ObjC++ but not for C
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/tokenizer.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/tokenizer.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/third_party/utf8_range/utf8_validity.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/third_party/utf8_range/utf8_validity.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/generated_message_util.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/generated_message_util.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/rust_keywords.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/upb_generator/mangle.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/upb_generator/mangle.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/generated_message_tctable_full.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/generated_message_tctable_full.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/context.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/context.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/io/zero_copy_sink.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/io/zero_copy_sink.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/implicit_weak_message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/implicit_weak_message.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/rust/message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/rust/message.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/message_lite.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/message_lite.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/generated_enum_util.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/generated_enum_util.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/compiler/cpp/service.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/compiler/cpp/service.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/generated_message_tctable_gen.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/inlined_string_field.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/inlined_string_field.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/unknown_field_set.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/unknown_field_set.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/parse_context.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/parse_context.o -std=c++14 -fno-wrapv -frtti -O1
+      third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc: In function ‘std::string google::protobuf::compiler::cpp::UnderscoresToCamelCase(absl::lts_20240116::string_view, bool)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc:269:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        269 |   for (int i = 0; i < input.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc: In function ‘std::string google::protobuf::compiler::cpp::FilenameIdentifier(absl::lts_20240116::string_view)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc:850:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘absl::lts_20240116::string_view::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+        850 |   for (int i = 0; i < filename.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~
+      third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc: In member function ‘google::protobuf::compiler::cpp::MessageAnalysis google::protobuf::compiler::cpp::MessageSCCAnalyzer::GetSCCAnalysis(const google::protobuf::compiler::SCC*)’:
+      third_party/protobuf/src/google/protobuf/compiler/cpp/helpers.cc:1533:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector<const google::protobuf::Descriptor*>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare]
+       1533 |   for (int i = 0; i < scc->descriptors.size(); i++) {
+            |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/wire_format.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/wire_format.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/descriptor.pb.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/descriptor.pb.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/descriptor_database.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/descriptor_database.o -std=c++14 -fno-wrapv -frtti -O1
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/abseil-cpp -Ithird_party/protobuf -Ithird_party/protobuf/src -Ithird_party/protobuf/upb -Ithird_party/protobuf/third_party/utf8_range -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c third_party/protobuf/src/google/protobuf/dynamic_message.cc -o build/temp.linux-x86_64-cpython-313/third_party/protobuf/src/google/protobuf/dynamic_message.o -std=c++14 -fno-wrapv -frtti -O1
+      error: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
+      [end of output]
+  
+  note: This error originates from a subprocess, and is likely not a problem with pip.
+  ERROR: Failed building wheel for grpcio-tools
+  error: subprocess-exited-with-error
+  
+  × Building wheel for safetensors (pyproject.toml) did not run successfully.
+  │ exit code: 1
+  ╰─> [53 lines of output]
+      Running `maturin pep517 build-wheel -i /media/xeb/GreyArea/projects/exo/venv/bin/python3.13 --compatibility off`
+      🍹 Building a mixed python/rust project
+      🔗 Found pyo3 bindings
+      🐍 Found CPython 3.13 at /media/xeb/GreyArea/projects/exo/venv/bin/python3.13
+      📡 Using build options features, bindings from pyproject.toml
+         Compiling target-lexicon v0.12.14
+         Compiling proc-macro2 v1.0.80
+         Compiling unicode-ident v1.0.12
+         Compiling once_cell v1.19.0
+         Compiling autocfg v1.2.0
+         Compiling libc v0.2.153
+         Compiling serde v1.0.197
+         Compiling parking_lot_core v0.9.9
+         Compiling heck v0.4.1
+         Compiling portable-atomic v1.6.0
+         Compiling serde_json v1.0.115
+         Compiling cfg-if v1.0.0
+         Compiling smallvec v1.13.2
+         Compiling scopeguard v1.2.0
+         Compiling ryu v1.0.17
+         Compiling itoa v1.0.11
+         Compiling indoc v2.0.5
+         Compiling unindent v0.2.3
+         Compiling lock_api v0.4.11
+         Compiling memoffset v0.9.1
+         Compiling pyo3-build-config v0.21.1
+         Compiling quote v1.0.36
+         Compiling syn v2.0.59
+         Compiling memmap2 v0.9.4
+         Compiling parking_lot v0.12.1
+         Compiling pyo3-ffi v0.21.1
+         Compiling pyo3 v0.21.1
+      error: failed to run custom build command for `pyo3-ffi v0.21.1`
+      
+      Caused by:
+        process didn't exit successfully: `/tmp/pip-install-qcc69zcd/safetensors_17864e3c285c46e2b92d44f91585a4ba/bindings/python/target/release/build/pyo3-ffi-5b305c48f43dfdda/build-script-build` (exit status: 1)
+        --- stdout
+        cargo:rerun-if-env-changed=PYO3_CROSS
+        cargo:rerun-if-env-changed=PYO3_CROSS_LIB_DIR
+        cargo:rerun-if-env-changed=PYO3_CROSS_PYTHON_VERSION
+        cargo:rerun-if-env-changed=PYO3_CROSS_PYTHON_IMPLEMENTATION
+        cargo:rerun-if-env-changed=PYO3_PRINT_CONFIG
+        cargo:rerun-if-env-changed=PYO3_USE_ABI3_FORWARD_COMPATIBILITY
+      
+        --- stderr
+        error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12)
+        = help: please check if an updated version of PyO3 is available. Current version: 0.21.1
+        = help: set PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 to suppress this check and build anyway using the stable ABI
+      warning: build failed, waiting for other jobs to finish...
+      💥 maturin failed
+        Caused by: Failed to build a native library through cargo
+        Caused by: Cargo build finished with "exit status: 101": `env -u CARGO PYO3_ENVIRONMENT_SIGNATURE="cpython-3.13-64bit" PYO3_PYTHON="/media/xeb/GreyArea/projects/exo/venv/bin/python3.13" PYTHON_SYS_EXECUTABLE="/media/xeb/GreyArea/projects/exo/venv/bin/python3.13" "cargo" "rustc" "--features" "pyo3/extension-module" "--message-format" "json-render-diagnostics" "--manifest-path" "/tmp/pip-install-qcc69zcd/safetensors_17864e3c285c46e2b92d44f91585a4ba/bindings/python/Cargo.toml" "--release" "--lib"`
+      Error: command ['maturin', 'pep517', 'build-wheel', '-i', '/media/xeb/GreyArea/projects/exo/venv/bin/python3.13', '--compatibility', 'off'] returned non-zero exit status 1
+      [end of output]
+  
+  note: This error originates from a subprocess, and is likely not a problem with pip.
+  ERROR: Failed building wheel for safetensors
+  error: subprocess-exited-with-error
+  
+  × Building wheel for tiktoken (pyproject.toml) did not run successfully.
+  │ exit code: 1
+  ╰─> [133 lines of output]
+      running bdist_wheel
+      running build
+      running build_py
+      creating build
+      creating build/lib.linux-x86_64-cpython-313
+      creating build/lib.linux-x86_64-cpython-313/tiktoken
+      copying tiktoken/load.py -> build/lib.linux-x86_64-cpython-313/tiktoken
+      copying tiktoken/model.py -> build/lib.linux-x86_64-cpython-313/tiktoken
+      copying tiktoken/__init__.py -> build/lib.linux-x86_64-cpython-313/tiktoken
+      copying tiktoken/_educational.py -> build/lib.linux-x86_64-cpython-313/tiktoken
+      copying tiktoken/registry.py -> build/lib.linux-x86_64-cpython-313/tiktoken
+      copying tiktoken/core.py -> build/lib.linux-x86_64-cpython-313/tiktoken
+      creating build/lib.linux-x86_64-cpython-313/tiktoken_ext
+      copying tiktoken_ext/openai_public.py -> build/lib.linux-x86_64-cpython-313/tiktoken_ext
+      running egg_info
+      writing tiktoken.egg-info/PKG-INFO
+      writing dependency_links to tiktoken.egg-info/dependency_links.txt
+      writing requirements to tiktoken.egg-info/requires.txt
+      writing top-level names to tiktoken.egg-info/top_level.txt
+      reading manifest file 'tiktoken.egg-info/SOURCES.txt'
+      reading manifest template 'MANIFEST.in'
+      warning: no files found matching 'Makefile'
+      adding license file 'LICENSE'
+      writing manifest file 'tiktoken.egg-info/SOURCES.txt'
+      copying tiktoken/py.typed -> build/lib.linux-x86_64-cpython-313/tiktoken
+      running build_ext
+      running build_rust
+          Updating crates.io index
+           Locking 48 packages to latest compatible versions
+            Adding bit-set v0.5.3 (latest: v0.8.0)
+            Adding bit-vec v0.6.3 (latest: v0.8.0)
+            Adding fancy-regex v0.11.0 (latest: v0.13.0)
+            Adding heck v0.4.1 (latest: v0.5.0)
+            Adding pyo3 v0.20.3 (latest: v0.22.2)
+            Adding pyo3-build-config v0.20.3 (latest: v0.22.2)
+            Adding pyo3-ffi v0.20.3 (latest: v0.22.2)
+            Adding pyo3-macros v0.20.3 (latest: v0.22.2)
+            Adding pyo3-macros-backend v0.20.3 (latest: v0.22.2)
+            Adding rustc-hash v1.1.0 (latest: v2.0.0)
+      cargo rustc --lib --message-format=json-render-diagnostics --manifest-path Cargo.toml --release -v --features pyo3/extension-module --crate-type cdylib --
+         Compiling target-lexicon v0.12.15
+         Compiling once_cell v1.19.0
+         Compiling autocfg v1.3.0
+         Compiling proc-macro2 v1.0.86
+         Compiling libc v0.2.155
+         Compiling unicode-ident v1.0.12
+         Compiling memchr v2.7.4
+         Compiling parking_lot_core v0.9.10
+         Compiling regex-syntax v0.8.4
+         Compiling cfg-if v1.0.0
+         Compiling portable-atomic v1.7.0
+         Compiling scopeguard v1.2.0
+         Compiling heck v0.4.1
+         Compiling smallvec v1.13.2
+         Compiling bit-vec v0.6.3
+         Compiling indoc v2.0.5
+         Compiling unindent v0.2.3
+         Compiling rustc-hash v1.1.0
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/target-lexicon-0.12.15/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' -C metadata=c68b2e65e617c592 -C extra-filename=-c68b2e65e617c592 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/target-lexicon-c68b2e65e617c592 -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name once_cell --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.19.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' -C metadata=a9c937a892fd5885 -C extra-filename=-a9c937a892fd5885 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name autocfg --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off -C metadata=02969d2de828ea1e -C extra-filename=-02969d2de828ea1e --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.86/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="proc-macro"' -C metadata=d51e0e756aa8190f -C extra-filename=-d51e0e756aa8190f --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/proc-macro2-d51e0e756aa8190f -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.155/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=3633f0fdef7962b6 -C extra-filename=-3633f0fdef7962b6 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/libc-3633f0fdef7962b6 -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name memchr --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="std"' -C metadata=d2f87c9e50ed25eb -C extra-filename=-d2f87c9e50ed25eb --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name unicode_ident --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.12/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off -C metadata=84ee9296dded085e -C extra-filename=-84ee9296dded085e --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.10/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off -C metadata=a273d64016bb5cda -C extra-filename=-a273d64016bb5cda --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/parking_lot_core-a273d64016bb5cda -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name regex_syntax --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' -C metadata=f685b407d43a7e83 -C extra-filename=-f685b407d43a7e83 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name cfg_if --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C metadata=22ef46fe85ecc493 -C extra-filename=-22ef46fe85ecc493 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.7.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::transmute_undefined_repr' '--warn=clippy::trailing_empty_array' --warn=single_use_lifetimes --warn=rust_2018_idioms '--warn=clippy::pedantic' --warn=non_ascii_idents '--warn=clippy::inline_asm_x86_att_syntax' --warn=improper_ctypes_definitions --warn=improper_ctypes '--warn=clippy::default_union_representation' '--warn=clippy::as_underscore' '--warn=clippy::as_ptr_cast_mut' '--warn=clippy::all' '--allow=clippy::type_complexity' '--allow=clippy::too_many_lines' '--allow=clippy::too_many_arguments' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::single_match_else' '--allow=clippy::single_match' '--allow=clippy::similar_names' '--allow=clippy::nonminimal_bool' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_errors_doc' '--allow=clippy::manual_range_contains' '--allow=clippy::manual_assert' '--allow=clippy::lint_groups_priority' '--allow=clippy::incompatible_msrv' '--allow=clippy::float_cmp' '--allow=clippy::doc_markdown' '--allow=clippy::declare_interior_mutable_const' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_assert_comparison' -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="fallback"' -C metadata=fae9e5b43bdff33a -C extra-filename=-fae9e5b43bdff33a --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/portable-atomic-fae9e5b43bdff33a -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name scopeguard --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C metadata=8278c67d28bf9eb1 -C extra-filename=-8278c67d28bf9eb1 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name heck --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/heck-0.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' -C metadata=ce8a5f2220bf6de9 -C extra-filename=-ce8a5f2220bf6de9 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name smallvec --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C metadata=6b82696b6b630cbb -C extra-filename=-6b82696b6b630cbb --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name bit_vec --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bit-vec-0.6.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="std"' -C metadata=32951ffb70c7782a -C extra-filename=-32951ffb70c7782a --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name indoc --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/indoc-2.0.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debug-assertions=off -C metadata=ba5d3b9cd8a57df1 -C extra-filename=-ba5d3b9cd8a57df1 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern proc_macro --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name unindent --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unindent-0.2.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C metadata=8512c9ed6b8099da -C extra-filename=-8512c9ed6b8099da --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name rustc_hash --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-hash-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=64f78dac3943ed5f -C extra-filename=-64f78dac3943ed5f --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow`
+         Compiling bit-set v0.5.3
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name bit_set --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bit-set-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=33f9e5cd7a1c6211 -C extra-filename=-33f9e5cd7a1c6211 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern bit_vec=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libbit_vec-32951ffb70c7782a.rmeta --cap-lints allow`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/parking_lot_core-a273d64016bb5cda/build-script-build`
+         Compiling lock_api v0.4.12
+         Compiling memoffset v0.9.1
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.12/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="atomic_usize"' --cfg 'feature="default"' -C metadata=99d5ceb955c2a6d6 -C extra-filename=-99d5ceb955c2a6d6 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/lock_api-99d5ceb955c2a6d6 -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern autocfg=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libautocfg-02969d2de828ea1e.rlib --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.9.1/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' -C metadata=c5143e63ff2dad61 -C extra-filename=-c5143e63ff2dad61 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/memoffset-c5143e63ff2dad61 -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern autocfg=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libautocfg-02969d2de828ea1e.rlib --cap-lints allow`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/proc-macro2-d51e0e756aa8190f/build-script-build`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/libc-3633f0fdef7962b6/build-script-build`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name libc --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.155/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=c5612f9a5292525b -C extra-filename=-c5612f9a5292525b --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow --cfg freebsd11 --cfg libc_priv_mod_use --cfg libc_union --cfg libc_const_size_of --cfg libc_align --cfg libc_int128 --cfg libc_core_cvoid --cfg libc_packedN --cfg libc_cfg_target_vendor --cfg libc_non_exhaustive --cfg libc_long_array --cfg libc_ptr_addr_of --cfg libc_underscore_const_names --cfg libc_const_extern_fn`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name proc_macro2 --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.86/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="proc-macro"' -C metadata=cfb7aae456d0a8b3 -C extra-filename=-cfb7aae456d0a8b3 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern unicode_ident=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libunicode_ident-84ee9296dded085e.rmeta --cap-lints allow --cfg wrap_proc_macro`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/portable-atomic-fae9e5b43bdff33a/build-script-build`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/target-lexicon-c68b2e65e617c592/build-script-build`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name portable_atomic --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/portable-atomic-1.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --warn=unreachable_pub --warn=unexpected_cfgs '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::transmute_undefined_repr' '--warn=clippy::trailing_empty_array' --warn=single_use_lifetimes --warn=rust_2018_idioms '--warn=clippy::pedantic' --warn=non_ascii_idents '--warn=clippy::inline_asm_x86_att_syntax' --warn=improper_ctypes_definitions --warn=improper_ctypes '--warn=clippy::default_union_representation' '--warn=clippy::as_underscore' '--warn=clippy::as_ptr_cast_mut' '--warn=clippy::all' '--allow=clippy::type_complexity' '--allow=clippy::too_many_lines' '--allow=clippy::too_many_arguments' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::single_match_else' '--allow=clippy::single_match' '--allow=clippy::similar_names' '--allow=clippy::nonminimal_bool' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_errors_doc' '--allow=clippy::manual_range_contains' '--allow=clippy::manual_assert' '--allow=clippy::lint_groups_priority' '--allow=clippy::incompatible_msrv' '--allow=clippy::float_cmp' '--allow=clippy::doc_markdown' '--allow=clippy::declare_interior_mutable_const' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_assert_comparison' --cfg 'feature="default"' --cfg 'feature="fallback"' -C metadata=40483bc72748ca63 -C extra-filename=-40483bc72748ca63 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow --cfg portable_atomic_llvm_16`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/lock_api-99d5ceb955c2a6d6/build-script-build`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/memoffset-c5143e63ff2dad61/build-script-build`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name target_lexicon --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/target-lexicon-0.12.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' -C metadata=6d06e7df93a33318 -C extra-filename=-6d06e7df93a33318 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow --cfg 'feature="rust_1_40"'`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name memoffset --edition=2015 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memoffset-0.9.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' -C metadata=0426e9530894b5e1 -C extra-filename=-0426e9530894b5e1 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --cap-lints allow --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const --cfg stable_offset_of`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name lock_api --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.12/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="atomic_usize"' --cfg 'feature="default"' -C metadata=9dcdd5c07dbfa153 -C extra-filename=-9dcdd5c07dbfa153 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern scopeguard=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libscopeguard-8278c67d28bf9eb1.rmeta --cap-lints allow --cfg has_const_fn_trait_bound`
+         Compiling aho-corasick v1.1.3
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name aho_corasick --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="perf-literal"' --cfg 'feature="std"' -C metadata=abac587700041310 -C extra-filename=-abac587700041310 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern memchr=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libmemchr-d2f87c9e50ed25eb.rmeta --cap-lints allow`
+         Compiling quote v1.0.36
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name quote --edition=2018 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.36/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=264cb8fc8feed360 -C extra-filename=-264cb8fc8feed360 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern proc_macro2=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libproc_macro2-cfb7aae456d0a8b3.rmeta --cap-lints allow`
+         Compiling pyo3-build-config v0.20.3
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyo3-build-config-0.20.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="extension-module"' --cfg 'feature="resolve-config"' -C metadata=cf81d99c93c384c5 -C extra-filename=-cf81d99c93c384c5 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/pyo3-build-config-cf81d99c93c384c5 -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern target_lexicon=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libtarget_lexicon-6d06e7df93a33318.rlib --cap-lints allow`
+         Compiling syn v2.0.72
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name syn --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.72/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' -C metadata=6acdd59e18cf430c -C extra-filename=-6acdd59e18cf430c --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern proc_macro2=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libproc_macro2-cfb7aae456d0a8b3.rmeta --extern quote=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libquote-264cb8fc8feed360.rmeta --extern unicode_ident=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libunicode_ident-84ee9296dded085e.rmeta --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name parking_lot_core --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C metadata=67960189551bdae0 -C extra-filename=-67960189551bdae0 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern cfg_if=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libcfg_if-22ef46fe85ecc493.rmeta --extern libc=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/liblibc-c5612f9a5292525b.rmeta --extern smallvec=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libsmallvec-6b82696b6b630cbb.rmeta --cap-lints allow`
+         Compiling parking_lot v0.12.3
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name parking_lot --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="default"' -C metadata=305c5c6a4c98b668 -C extra-filename=-305c5c6a4c98b668 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern lock_api=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/liblock_api-9dcdd5c07dbfa153.rmeta --extern parking_lot_core=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libparking_lot_core-67960189551bdae0.rmeta --cap-lints allow`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/pyo3-build-config-cf81d99c93c384c5/build-script-build`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name pyo3_build_config --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyo3-build-config-0.20.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="extension-module"' --cfg 'feature="resolve-config"' -C metadata=64b2cc9961efc8fe -C extra-filename=-64b2cc9961efc8fe --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern once_cell=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libonce_cell-a9c937a892fd5885.rmeta --extern target_lexicon=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libtarget_lexicon-6d06e7df93a33318.rmeta --cap-lints allow`
+         Compiling pyo3-ffi v0.20.3
+         Compiling pyo3 v0.20.3
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyo3-ffi-0.20.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no '--warn=clippy::useless_transmute' '--warn=clippy::used_underscore_binding' --warn=unused_lifetimes --allow=unused_imports '--warn=clippy::unnecessary_wraps' '--warn=clippy::todo' --warn=rust_2021_prelude_collisions --warn=rust_2018_idioms '--warn=clippy::manual_ok_or' '--warn=clippy::manual_assert' '--warn=clippy::let_unit_value' --warn=invalid_doc_attributes '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' --warn=elided_lifetimes_in_paths --allow=dead_code '--warn=clippy::dbg_macro' '--warn=clippy::checked_conversions' '--warn=rustdoc::broken_intra_doc_links' '--warn=rustdoc::bare_urls' -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="extension-module"' -C metadata=29e36c5d8077a86f -C extra-filename=-29e36c5d8077a86f --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/pyo3-ffi-29e36c5d8077a86f -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern pyo3_build_config=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libpyo3_build_config-64b2cc9961efc8fe.rlib --cap-lints allow`
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pyo3-0.20.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no '--warn=clippy::useless_transmute' '--warn=clippy::used_underscore_binding' --warn=unused_lifetimes --allow=unused_imports '--warn=clippy::unnecessary_wraps' '--warn=clippy::todo' --warn=rust_2021_prelude_collisions --warn=rust_2018_idioms '--warn=clippy::manual_ok_or' '--warn=clippy::manual_assert' '--warn=clippy::let_unit_value' --warn=invalid_doc_attributes '--warn=clippy::flat_map_option' '--warn=clippy::filter_map_next' '--warn=clippy::explicit_iter_loop' '--warn=clippy::explicit_into_iter_loop' --warn=elided_lifetimes_in_paths --allow=dead_code '--warn=clippy::dbg_macro' '--warn=clippy::checked_conversions' '--warn=rustdoc::broken_intra_doc_links' '--warn=rustdoc::bare_urls' -C debug-assertions=off --cfg 'feature="default"' --cfg 'feature="extension-module"' --cfg 'feature="indoc"' --cfg 'feature="macros"' --cfg 'feature="pyo3-macros"' --cfg 'feature="unindent"' -C metadata=09a09d6c196ad000 -C extra-filename=-09a09d6c196ad000 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/pyo3-09a09d6c196ad000 -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern pyo3_build_config=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libpyo3_build_config-64b2cc9961efc8fe.rlib --cap-lints allow`
+         Compiling regex-automata v0.4.7
+           Running `/home/xeb/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/bin/rustc --crate-name regex_automata --edition=2021 /home/xeb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/regex-automata-0.4.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="dfa-onepass"' --cfg 'feature="dfa-search"' --cfg 'feature="hybrid"' --cfg 'feature="meta"' --cfg 'feature="nfa-backtrack"' --cfg 'feature="nfa-pikevm"' --cfg 'feature="nfa-thompson"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="perf-literal-multisubstring"' --cfg 'feature="perf-literal-substring"' --cfg 'feature="std"' --cfg 'feature="syntax"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --cfg 'feature="unicode-word-boundary"' -C metadata=a0d73332f1ead1e9 -C extra-filename=-a0d73332f1ead1e9 --out-dir /tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps -C strip=debuginfo -L dependency=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps --extern aho_corasick=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libaho_corasick-abac587700041310.rmeta --extern memchr=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libmemchr-d2f87c9e50ed25eb.rmeta --extern regex_syntax=/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/deps/libregex_syntax-f685b407d43a7e83.rmeta --cap-lints allow`
+           Running `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/pyo3-ffi-29e36c5d8077a86f/build-script-build`
+      error: failed to run custom build command for `pyo3-ffi v0.20.3`
+      
+      Caused by:
+        process didn't exit successfully: `/tmp/pip-install-qcc69zcd/tiktoken_3814c35825f245ca814a08045975c7bb/target/release/build/pyo3-ffi-29e36c5d8077a86f/build-script-build` (exit status: 1)
+        --- stdout
+        cargo:rerun-if-env-changed=PYO3_CROSS
+        cargo:rerun-if-env-changed=PYO3_CROSS_LIB_DIR
+        cargo:rerun-if-env-changed=PYO3_CROSS_PYTHON_VERSION
+        cargo:rerun-if-env-changed=PYO3_CROSS_PYTHON_IMPLEMENTATION
+        cargo:rerun-if-env-changed=PYO3_PRINT_CONFIG
+        cargo:rerun-if-env-changed=PYO3_USE_ABI3_FORWARD_COMPATIBILITY
+      
+        --- stderr
+        error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12)
+        = help: please check if an updated version of PyO3 is available. Current version: 0.20.3
+        = help: set PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 to suppress this check and build anyway using the stable ABI
+      warning: build failed, waiting for other jobs to finish...
+      error: `cargo rustc --lib --message-format=json-render-diagnostics --manifest-path Cargo.toml --release -v --features pyo3/extension-module --crate-type cdylib --` failed with code 101
+      [end of output]
+  
+  note: This error originates from a subprocess, and is likely not a problem with pip.
+  ERROR: Failed building wheel for tiktoken
+  error: subprocess-exited-with-error
+  
+  × Building wheel for tokenizers (pyproject.toml) did not run successfully.
+  │ exit code: 1
+  ╰─> [105 lines of output]
+      Running `maturin pep517 build-wheel -i /media/xeb/GreyArea/projects/exo/venv/bin/python3.13 --compatibility off`
+      🍹 Building a mixed python/rust project
+      🔗 Found pyo3 bindings
+      🐍 Found CPython 3.13 at /media/xeb/GreyArea/projects/exo/venv/bin/python3.13
+      📡 Using build options features, bindings from pyproject.toml
+         Compiling proc-macro2 v1.0.81
+         Compiling unicode-ident v1.0.12
+         Compiling autocfg v1.2.0
+         Compiling libc v0.2.153
+         Compiling target-lexicon v0.12.14
+         Compiling once_cell v1.19.0
+         Compiling cfg-if v1.0.0
+         Compiling cc v1.0.94
+         Compiling memchr v2.7.2
+         Compiling crossbeam-utils v0.8.19
+         Compiling fnv v1.0.7
+         Compiling ident_case v1.0.1
+         Compiling strsim v0.10.0
+         Compiling smallvec v1.13.2
+         Compiling portable-atomic v1.6.0
+         Compiling serde v1.0.198
+         Compiling pkg-config v0.3.30
+         Compiling either v1.11.0
+         Compiling rayon-core v1.12.1
+         Compiling parking_lot_core v0.9.9
+         Compiling regex-syntax v0.8.3
+         Compiling heck v0.4.1
+         Compiling scopeguard v1.2.0
+         Compiling paste v1.0.14
+         Compiling unicode-width v0.1.11
+         Compiling ppv-lite86 v0.2.17
+         Compiling rawpointer v0.2.1
+         Compiling thiserror v1.0.58
+         Compiling utf8parse v0.2.1
+         Compiling lazy_static v1.4.0
+         Compiling log v0.4.21
+         Compiling serde_json v1.0.116
+         Compiling minimal-lexical v0.2.1
+         Compiling anstyle-parse v0.2.3
+         Compiling unindent v0.2.3
+         Compiling itertools v0.11.0
+         Compiling unicode-segmentation v1.11.0
+         Compiling bitflags v1.3.2
+         Compiling macro_rules_attribute-proc_macro v0.2.0
+         Compiling num-traits v0.2.18
+         Compiling lock_api v0.4.11
+         Compiling matrixmultiply v0.3.8
+         Compiling memoffset v0.9.1
+         Compiling itoa v1.0.11
+         Compiling number_prefix v0.4.0
+         Compiling anstyle-query v1.0.2
+         Compiling ryu v1.0.17
+         Compiling indoc v2.0.5
+         Compiling base64 v0.13.1
+         Compiling colorchoice v1.0.0
+         Compiling anstyle v1.0.6
+         Compiling itertools v0.12.1
+         Compiling unicode-normalization-alignments v0.1.12
+         Compiling rustc-hash v1.1.0
+         Compiling unicode_categories v0.1.1
+         Compiling aho-corasick v1.1.3
+         Compiling nom v7.1.3
+         Compiling anstream v0.6.13
+         Compiling quote v1.0.36
+         Compiling crossbeam-epoch v0.9.18
+         Compiling pyo3-build-config v0.21.2
+         Compiling humantime v2.1.0
+         Compiling syn v2.0.60
+         Compiling macro_rules_attribute v0.2.0
+         Compiling crossbeam-deque v0.8.5
+         Compiling getrandom v0.2.14
+         Compiling console v0.15.8
+         Compiling rand_core v0.6.4
+         Compiling onig_sys v69.8.1
+         Compiling esaxx-rs v0.1.10
+         Compiling parking_lot v0.12.1
+         Compiling rand_chacha v0.3.1
+         Compiling indicatif v0.17.8
+         Compiling rand v0.8.5
+         Compiling rayon v1.10.0
+         Compiling num-complex v0.4.5
+         Compiling num-integer v0.1.46
+         Compiling pyo3-ffi v0.21.2
+         Compiling pyo3 v0.21.2
+      error: failed to run custom build command for `pyo3-ffi v0.21.2`
+      
+      Caused by:
+        process didn't exit successfully: `/tmp/pip-install-qcc69zcd/tokenizers_03d6426dd2cd4c55a8156e7f236e498e/bindings/python/target/release/build/pyo3-ffi-ea9e590b120be022/build-script-build` (exit status: 1)
+        --- stdout
+        cargo:rerun-if-env-changed=PYO3_CROSS
+        cargo:rerun-if-env-changed=PYO3_CROSS_LIB_DIR
+        cargo:rerun-if-env-changed=PYO3_CROSS_PYTHON_VERSION
+        cargo:rerun-if-env-changed=PYO3_CROSS_PYTHON_IMPLEMENTATION
+        cargo:rerun-if-env-changed=PYO3_PRINT_CONFIG
+        cargo:rerun-if-env-changed=PYO3_USE_ABI3_FORWARD_COMPATIBILITY
+      
+        --- stderr
+        error: the configured Python interpreter version (3.13) is newer than PyO3's maximum supported version (3.12)
+        = help: please check if an updated version of PyO3 is available. Current version: 0.21.2
+        = help: set PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 to suppress this check and build anyway using the stable ABI
+      warning: build failed, waiting for other jobs to finish...
+      💥 maturin failed
+        Caused by: Failed to build a native library through cargo
+        Caused by: Cargo build finished with "exit status: 101": `env -u CARGO PYO3_ENVIRONMENT_SIGNATURE="cpython-3.13-64bit" PYO3_PYTHON="/media/xeb/GreyArea/projects/exo/venv/bin/python3.13" PYTHON_SYS_EXECUTABLE="/media/xeb/GreyArea/projects/exo/venv/bin/python3.13" "cargo" "rustc" "--features" "pyo3/extension-module" "--message-format" "json-render-diagnostics" "--manifest-path" "/tmp/pip-install-qcc69zcd/tokenizers_03d6426dd2cd4c55a8156e7f236e498e/bindings/python/Cargo.toml" "--release" "--lib"`
+      Error: command ['maturin', 'pep517', 'build-wheel', '-i', '/media/xeb/GreyArea/projects/exo/venv/bin/python3.13', '--compatibility', 'off'] returned non-zero exit status 1
+      [end of output]
+  
+  note: This error originates from a subprocess, and is likely not a problem with pip.
+  ERROR: Failed building wheel for tokenizers
+  error: subprocess-exited-with-error
+  
+  × python setup.py bdist_wheel did not run successfully.
+  │ exit code: 1
+  ╰─> [199 lines of output]
+      Building lxml version 4.9.4.
+      /tmp/pip-install-qcc69zcd/lxml_91eb48b4da4e4fafa7307214d3e62f01/setup.py:67: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
+        import pkg_resources
+      Building without Cython.
+      Building against libxml2 2.9.13 and libxslt 1.1.34
+      running bdist_wheel
+      running build
+      running build_py
+      creating build
+      creating build/lib.linux-x86_64-cpython-313
+      creating build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/_elementpath.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/builder.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/__init__.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/pyclasslookup.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/cssselect.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/doctestcompare.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/ElementInclude.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/sax.py -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/usedoctest.py -> build/lib.linux-x86_64-cpython-313/lxml
+      creating build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/__init__.py -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      creating build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/html5parser.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/builder.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/__init__.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/diff.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/soupparser.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/_html5builder.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/ElementSoup.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/_setmixin.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/formfill.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/_diffcommand.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/clean.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/defs.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      copying src/lxml/html/usedoctest.py -> build/lib.linux-x86_64-cpython-313/lxml/html
+      creating build/lib.linux-x86_64-cpython-313/lxml/isoschematron
+      copying src/lxml/isoschematron/__init__.py -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron
+      copying src/lxml/etree.h -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/etree_api.h -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/lxml.etree.h -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/lxml.etree_api.h -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/etree.pyx -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/objectify.pyx -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/docloader.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/classlookup.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/xpath.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/extensions.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/readonlytree.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/apihelpers.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/xslt.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/parsertarget.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/schematron.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/xsltext.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/dtd.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/public-api.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/debug.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/xinclude.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/xmlschema.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/xmlerror.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/saxparser.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/nsclasses.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/proxy.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/serializer.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/parser.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/cleanup.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/xmlid.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/iterparse.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/relaxng.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/objectpath.pxi -> build/lib.linux-x86_64-cpython-313/lxml
+      copying src/lxml/includes/xmlparser.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/xinclude.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/relaxng.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/uri.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/schematron.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/c14n.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/config.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/tree.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/__init__.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/xslt.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/dtdvalid.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/xmlschema.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/htmlparser.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/xpath.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/etreepublic.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/xmlerror.pxd -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/lxml-version.h -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      copying src/lxml/includes/etree_defs.h -> build/lib.linux-x86_64-cpython-313/lxml/includes
+      creating build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources
+      creating build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/rng
+      copying src/lxml/isoschematron/resources/rng/iso-schematron.rng -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/rng
+      creating build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl
+      copying src/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl
+      copying src/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl
+      creating build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
+      copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
+      copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
+      copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
+      copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
+      copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
+      copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt -> build/lib.linux-x86_64-cpython-313/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
+      running build_ext
+      building 'lxml.etree' extension
+      creating build/temp.linux-x86_64-cpython-313
+      creating build/temp.linux-x86_64-cpython-313/src
+      creating build/temp.linux-x86_64-cpython-313/src/lxml
+      x86_64-linux-gnu-gcc -fno-strict-overflow -Wsign-compare -DNDEBUG -g -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -DCYTHON_CLINE_IN_TRACEBACK=0 -I/usr/include/libxml2 -Isrc -Isrc/lxml/includes -I/media/xeb/GreyArea/projects/exo/venv/include -I/usr/include/python3.13 -c src/lxml/etree.c -o build/temp.linux-x86_64-cpython-313/src/lxml/etree.o -w
+      src/lxml/etree.c: In function ‘__Pyx_init_assertions_enabled’:
+      src/lxml/etree.c:5988:105: error: invalid type argument of ‘->’ (have ‘int’)
+       5988 |     __pyx_assertions_enabled_flag = ! _PyInterpreterState_GetConfig(__Pyx_PyThreadState_Current->interp)->optimization_level;
+            |                                                                                                         ^~
+      src/lxml/etree.c: In function ‘__Pyx_PyIter_Next2’:
+      src/lxml/etree.c:265182:35: error: ‘_PyObject_NextNotImplemented’ undeclared (first use in this function); did you mean ‘PyObject_HashNotImplemented’?
+      265182 |         if (unlikely(iternext == &_PyObject_NextNotImplemented))
+             |                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c:1096:43: note: in definition of macro ‘unlikely’
+       1096 |   #define unlikely(x) __builtin_expect(!!(x), 0)
+            |                                           ^
+      src/lxml/etree.c:265182:35: note: each undeclared identifier is reported only once for each function it appears in
+      265182 |         if (unlikely(iternext == &_PyObject_NextNotImplemented))
+             |                                   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c:1096:43: note: in definition of macro ‘unlikely’
+       1096 |   #define unlikely(x) __builtin_expect(!!(x), 0)
+            |                                           ^
+      src/lxml/etree.c: In function ‘__Pyx_PyInt_As_int’:
+      src/lxml/etree.c:269066:27: error: too few arguments to function ‘_PyLong_AsByteArray’
+      269066 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ^~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/lxml/etree.c:96:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c: In function ‘__Pyx_PyInt_As_size_t’:
+      src/lxml/etree.c:269375:27: error: too few arguments to function ‘_PyLong_AsByteArray’
+      269375 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ^~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/lxml/etree.c:96:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c: In function ‘__Pyx_PyInt_As_unsigned_int’:
+      src/lxml/etree.c:269571:27: error: too few arguments to function ‘_PyLong_AsByteArray’
+      269571 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ^~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/lxml/etree.c:96:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c: In function ‘__Pyx_PyInt_As_signed__char’:
+      src/lxml/etree.c:269767:27: error: too few arguments to function ‘_PyLong_AsByteArray’
+      269767 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ^~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/lxml/etree.c:96:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c: In function ‘__Pyx_PyInt_As_unsigned_short’:
+      src/lxml/etree.c:270001:27: error: too few arguments to function ‘_PyLong_AsByteArray’
+      270001 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ^~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/lxml/etree.c:96:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c: In function ‘__Pyx_PyInt_As_xmlChar’:
+      src/lxml/etree.c:270235:27: error: too few arguments to function ‘_PyLong_AsByteArray’
+      270235 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ^~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/lxml/etree.c:96:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      src/lxml/etree.c: In function ‘__Pyx_PyInt_As_long’:
+      src/lxml/etree.c:270438:27: error: too few arguments to function ‘_PyLong_AsByteArray’
+      270438 |                 int ret = _PyLong_AsByteArray((PyLongObject *)v,
+             |                           ^~~~~~~~~~~~~~~~~~~
+      In file included from /usr/include/python3.13/longobject.h:107,
+                       from /usr/include/python3.13/Python.h:77,
+                       from src/lxml/etree.c:96:
+      /usr/include/python3.13/cpython/longobject.h:108:17: note: declared here
+        108 | PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
+            |                 ^~~~~~~~~~~~~~~~~~~
+      Compile failed: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
+      creating tmp
+      cc -I/usr/include/libxml2 -I/usr/include/libxml2 -c /tmp/xmlXPathInitc3exqimz.c -o tmp/xmlXPathInitc3exqimz.o
+      cc tmp/xmlXPathInitc3exqimz.o -lxml2 -o a.out
+      error: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
+      [end of output]
+  
+  note: This error originates from a subprocess, and is likely not a problem with pip.
+  ERROR: Failed building wheel for lxml
+ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (grpcio, grpcio-tools, safetensors, tiktoken, tokenizers, lxml)
diff --git a/exo/networking/grpc/grpc_discovery.py b/exo/networking/grpc/grpc_discovery.py
index b607f083..1cf3495d 100644
--- a/exo/networking/grpc/grpc_discovery.py
+++ b/exo/networking/grpc/grpc_discovery.py
@@ -112,8 +112,13 @@ class GRPCDiscovery(Discovery):
             if DEBUG_DISCOVERY >= 2: print(f"Received invalid JSON data from {addr}: {decoded_data[:100]}")
             return
 
-        decoder = json.JSONDecoder(strict=False)
-        message = decoder.decode(decoded_data)
+        try:
+            decoder = json.JSONDecoder(strict=False)
+            message = decoder.decode(decoded_data)
+        except json.JSONDecodeError as e:
+            if DEBUG_DISCOVERY >= 2: print(f"Error decoding JSON data from {addr}: {e}")
+            return
+
         if DEBUG_DISCOVERY >= 2: print(f"received from peer {addr}: {message}")
 
         if message['type'] == 'discovery' and message['node_id'] != self.node_id:
diff --git a/out.txt b/out.txt
new file mode 100644
index 00000000..6f1a7dfe
--- /dev/null
+++ b/out.txt
@@ -0,0 +1,164 @@
+Processing /media/xeb/GreyArea/projects/exo
+  Preparing metadata (setup.py): started
+  Preparing metadata (setup.py): finished with status 'done'
+Collecting tinygrad@ git+https://github.com/tinygrad/tinygrad.git@a9f5a764dc640a5e5cbaaeeee21df7c8ca37da38 (from exo==0.0.1)
+  Using cached tinygrad-0.9.1-py3-none-any.whl
+Collecting aiohttp==3.9.5 (from exo==0.0.1)
+  Using cached aiohttp-3.9.5-cp313-cp313-linux_x86_64.whl
+Collecting aiohttp_cors==0.7.0 (from exo==0.0.1)
+  Using cached aiohttp_cors-0.7.0-py3-none-any.whl.metadata (20 kB)
+Collecting blobfile==2.1.1 (from exo==0.0.1)
+  Using cached blobfile-2.1.1-py3-none-any.whl.metadata (15 kB)
+Collecting grpcio==1.64.1 (from exo==0.0.1)
+  Using cached grpcio-1.64.1.tar.gz (12.2 MB)
+  Preparing metadata (setup.py): started
+  Preparing metadata (setup.py): finished with status 'done'
+Collecting grpcio-tools==1.64.1 (from exo==0.0.1)
+  Using cached grpcio_tools-1.64.1.tar.gz (5.0 MB)
+  Preparing metadata (setup.py): started
+  Preparing metadata (setup.py): finished with status 'done'
+Collecting huggingface-hub==0.23.4 (from exo==0.0.1)
+  Using cached huggingface_hub-0.23.4-py3-none-any.whl.metadata (12 kB)
+Collecting Jinja2==3.1.4 (from exo==0.0.1)
+  Using cached jinja2-3.1.4-py3-none-any.whl.metadata (2.6 kB)
+Collecting numpy==2.0.0 (from exo==0.0.1)
+  Using cached numpy-2.0.0-cp313-cp313-linux_x86_64.whl
+Collecting prometheus-client==0.20.0 (from exo==0.0.1)
+  Using cached prometheus_client-0.20.0-py3-none-any.whl.metadata (1.8 kB)
+Collecting protobuf==5.27.1 (from exo==0.0.1)
+  Using cached protobuf-5.27.1-cp38-abi3-manylinux2014_x86_64.whl.metadata (592 bytes)
+Collecting psutil==6.0.0 (from exo==0.0.1)
+  Using cached psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (21 kB)
+Collecting pynvml==11.5.3 (from exo==0.0.1)
+  Using cached pynvml-11.5.3-py3-none-any.whl.metadata (8.8 kB)
+Collecting requests==2.32.3 (from exo==0.0.1)
+  Using cached requests-2.32.3-py3-none-any.whl.metadata (4.6 kB)
+Collecting rich==13.7.1 (from exo==0.0.1)
+  Using cached rich-13.7.1-py3-none-any.whl.metadata (18 kB)
+Collecting safetensors==0.4.3 (from exo==0.0.1)
+  Using cached safetensors-0.4.3.tar.gz (69 kB)
+  Installing build dependencies: started
+  Installing build dependencies: finished with status 'done'
+  Getting requirements to build wheel: started
+  Getting requirements to build wheel: finished with status 'done'
+  Preparing metadata (pyproject.toml): started
+  Preparing metadata (pyproject.toml): finished with status 'done'
+Collecting tiktoken==0.7.0 (from exo==0.0.1)
+  Using cached tiktoken-0.7.0.tar.gz (33 kB)
+  Installing build dependencies: started
+  Installing build dependencies: finished with status 'done'
+  Getting requirements to build wheel: started
+  Getting requirements to build wheel: finished with status 'done'
+  Preparing metadata (pyproject.toml): started
+  Preparing metadata (pyproject.toml): finished with status 'done'
+Collecting tokenizers==0.19.1 (from exo==0.0.1)
+  Using cached tokenizers-0.19.1.tar.gz (321 kB)
+  Installing build dependencies: started
+  Installing build dependencies: finished with status 'done'
+  Getting requirements to build wheel: started
+  Getting requirements to build wheel: finished with status 'done'
+  Preparing metadata (pyproject.toml): started
+  Preparing metadata (pyproject.toml): finished with status 'done'
+Collecting tqdm==4.66.4 (from exo==0.0.1)
+  Using cached tqdm-4.66.4-py3-none-any.whl.metadata (57 kB)
+Collecting transformers==4.41.2 (from exo==0.0.1)
+  Using cached transformers-4.41.2-py3-none-any.whl.metadata (43 kB)
+Collecting uuid==1.30 (from exo==0.0.1)
+  Using cached uuid-1.30-py3-none-any.whl
+Collecting aiosignal>=1.1.2 (from aiohttp==3.9.5->exo==0.0.1)
+  Using cached aiosignal-1.3.1-py3-none-any.whl.metadata (4.0 kB)
+Collecting attrs>=17.3.0 (from aiohttp==3.9.5->exo==0.0.1)
+  Using cached attrs-23.2.0-py3-none-any.whl.metadata (9.5 kB)
+Collecting frozenlist>=1.1.1 (from aiohttp==3.9.5->exo==0.0.1)
+  Using cached frozenlist-1.4.1-py3-none-any.whl.metadata (12 kB)
+Collecting multidict<7.0,>=4.5 (from aiohttp==3.9.5->exo==0.0.1)
+  Using cached multidict-6.0.5-py3-none-any.whl.metadata (4.2 kB)
+Collecting yarl<2.0,>=1.0 (from aiohttp==3.9.5->exo==0.0.1)
+  Using cached yarl-1.9.4-py3-none-any.whl.metadata (31 kB)
+Collecting pycryptodomex~=3.8 (from blobfile==2.1.1->exo==0.0.1)
+  Using cached pycryptodomex-3.20.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.4 kB)
+Collecting urllib3<3,>=1.25.3 (from blobfile==2.1.1->exo==0.0.1)
+  Using cached urllib3-2.2.2-py3-none-any.whl.metadata (6.4 kB)
+Collecting lxml~=4.9 (from blobfile==2.1.1->exo==0.0.1)
+  Using cached lxml-4.9.4.tar.gz (3.6 MB)
+  Preparing metadata (setup.py): started
+  Preparing metadata (setup.py): finished with status 'done'
+Collecting filelock~=3.0 (from blobfile==2.1.1->exo==0.0.1)
+  Using cached filelock-3.15.4-py3-none-any.whl.metadata (2.9 kB)
+Requirement already satisfied: setuptools in ./venv/lib/python3.13/site-packages (from grpcio-tools==1.64.1->exo==0.0.1) (71.1.0)
+Collecting fsspec>=2023.5.0 (from huggingface-hub==0.23.4->exo==0.0.1)
+  Using cached fsspec-2024.6.1-py3-none-any.whl.metadata (11 kB)
+Collecting packaging>=20.9 (from huggingface-hub==0.23.4->exo==0.0.1)
+  Using cached packaging-24.1-py3-none-any.whl.metadata (3.2 kB)
+Collecting pyyaml>=5.1 (from huggingface-hub==0.23.4->exo==0.0.1)
+  Using cached PyYAML-6.0.1-cp313-cp313-linux_x86_64.whl
+Collecting typing-extensions>=3.7.4.3 (from huggingface-hub==0.23.4->exo==0.0.1)
+  Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB)
+Collecting MarkupSafe>=2.0 (from Jinja2==3.1.4->exo==0.0.1)
+  Using cached MarkupSafe-2.1.5-cp313-cp313-linux_x86_64.whl
+Collecting charset-normalizer<4,>=2 (from requests==2.32.3->exo==0.0.1)
+  Using cached charset_normalizer-3.3.2-py3-none-any.whl.metadata (33 kB)
+Collecting idna<4,>=2.5 (from requests==2.32.3->exo==0.0.1)
+  Using cached idna-3.7-py3-none-any.whl.metadata (9.9 kB)
+Collecting certifi>=2017.4.17 (from requests==2.32.3->exo==0.0.1)
+  Using cached certifi-2024.7.4-py3-none-any.whl.metadata (2.2 kB)
+Collecting markdown-it-py>=2.2.0 (from rich==13.7.1->exo==0.0.1)
+  Using cached markdown_it_py-3.0.0-py3-none-any.whl.metadata (6.9 kB)
+Collecting pygments<3.0.0,>=2.13.0 (from rich==13.7.1->exo==0.0.1)
+  Using cached pygments-2.18.0-py3-none-any.whl.metadata (2.5 kB)
+Collecting regex>=2022.1.18 (from tiktoken==0.7.0->exo==0.0.1)
+  Using cached regex-2024.5.15-cp313-cp313-linux_x86_64.whl
+Collecting mdurl~=0.1 (from markdown-it-py>=2.2.0->rich==13.7.1->exo==0.0.1)
+  Using cached mdurl-0.1.2-py3-none-any.whl.metadata (1.6 kB)
+Using cached aiohttp_cors-0.7.0-py3-none-any.whl (27 kB)
+Using cached blobfile-2.1.1-py3-none-any.whl (73 kB)
+Using cached huggingface_hub-0.23.4-py3-none-any.whl (402 kB)
+Using cached jinja2-3.1.4-py3-none-any.whl (133 kB)
+Using cached prometheus_client-0.20.0-py3-none-any.whl (54 kB)
+Using cached protobuf-5.27.1-cp38-abi3-manylinux2014_x86_64.whl (309 kB)
+Using cached psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (290 kB)
+Using cached pynvml-11.5.3-py3-none-any.whl (53 kB)
+Using cached requests-2.32.3-py3-none-any.whl (64 kB)
+Using cached rich-13.7.1-py3-none-any.whl (240 kB)
+Using cached tqdm-4.66.4-py3-none-any.whl (78 kB)
+Using cached transformers-4.41.2-py3-none-any.whl (9.1 MB)
+Using cached aiosignal-1.3.1-py3-none-any.whl (7.6 kB)
+Using cached attrs-23.2.0-py3-none-any.whl (60 kB)
+Using cached certifi-2024.7.4-py3-none-any.whl (162 kB)
+Using cached charset_normalizer-3.3.2-py3-none-any.whl (48 kB)
+Using cached filelock-3.15.4-py3-none-any.whl (16 kB)
+Using cached frozenlist-1.4.1-py3-none-any.whl (11 kB)
+Using cached fsspec-2024.6.1-py3-none-any.whl (177 kB)
+Using cached idna-3.7-py3-none-any.whl (66 kB)
+Using cached markdown_it_py-3.0.0-py3-none-any.whl (87 kB)
+Using cached multidict-6.0.5-py3-none-any.whl (9.7 kB)
+Using cached packaging-24.1-py3-none-any.whl (53 kB)
+Using cached pycryptodomex-3.20.0-cp35-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB)
+Using cached pygments-2.18.0-py3-none-any.whl (1.2 MB)
+Using cached typing_extensions-4.12.2-py3-none-any.whl (37 kB)
+Using cached urllib3-2.2.2-py3-none-any.whl (121 kB)
+Using cached yarl-1.9.4-py3-none-any.whl (31 kB)
+Using cached mdurl-0.1.2-py3-none-any.whl (10.0 kB)
+Building wheels for collected packages: exo, grpcio, grpcio-tools, safetensors, tiktoken, tokenizers, lxml
+  Building wheel for exo (setup.py): started
+  Building wheel for exo (setup.py): finished with status 'done'
+  Created wheel for exo: filename=exo-0.0.1-py3-none-any.whl size=59254 sha256=90f791e9120765638995e8c2601ba07f86338d492b6a07a423a118774de375a2
+  Stored in directory: /tmp/pip-ephem-wheel-cache-sk105743/wheels/dc/26/a7/9ffda4701ecc427d85b816380d68106c7a252648fa3f64b5cc
+  Building wheel for grpcio (setup.py): started
+  Building wheel for grpcio (setup.py): still running...
+  Building wheel for grpcio (setup.py): finished with status 'error'
+  Running setup.py clean for grpcio
+  Building wheel for grpcio-tools (setup.py): started
+  Building wheel for grpcio-tools (setup.py): finished with status 'error'
+  Running setup.py clean for grpcio-tools
+  Building wheel for safetensors (pyproject.toml): started
+  Building wheel for safetensors (pyproject.toml): finished with status 'error'
+  Building wheel for tiktoken (pyproject.toml): started
+  Building wheel for tiktoken (pyproject.toml): finished with status 'error'
+  Building wheel for tokenizers (pyproject.toml): started
+  Building wheel for tokenizers (pyproject.toml): finished with status 'error'
+  Building wheel for lxml (setup.py): started
+  Building wheel for lxml (setup.py): finished with status 'error'
+  Running setup.py clean for lxml
+Successfully built exo
+Failed to build grpcio grpcio-tools safetensors tiktoken tokenizers lxml
diff --git a/run.sh b/run.sh
new file mode 100644
index 00000000..988de811
--- /dev/null
+++ b/run.sh
@@ -0,0 +1,2 @@
+#!/bin/bash
+python main.py --chatgpt-api-port=8007 --disable-tui

← 2849128d processor load  ·  back to Exo  ·  remove accidentally added files f051ebe6 →