ubuntuusers.de

Ldap Anbindung

Status: Ungelöst | Ubuntu-Version: Server 22.04 (Jammy Jellyfish)
Antworten |

karzer Team-Icon

Wikiteam
Avatar von karzer

Anmeldungsdatum:
10. April 2022

Beiträge: 1597

Wohnort: Bad Oeynhausen

Windoofer schrieb:

root@MurMur:~# python3 -m pip install python-ldap 
Requirement already satisfied: python-ldap in /usr/local/lib/python3.10/dist-packages (3.4.2)
Requirement already satisfied: pyasn1>=0.3.7 in /usr/lib/python3/dist-packages (from python-ldap) (0.4.8)
Requirement already satisfied: pyasn1-modules>=0.1.5 in /usr/local/lib/python3.10/dist-packages (from python-ldap) (0.2.8)
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

das weis ich nicht wie ich das deuten soll

python-ldap zweimal installieren zu wollen ist ja vielleicht auch nicht so klug...

Doc_Symbiosis schrieb:

Wahrscheinlich sollte das so gehen:

pip3 install ice

Ja, sicherlich.

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

Hallo Doc_Symbiosis und karzer

pip3 install ice
Collecting ice
  Downloading ice-0.0.2.tar.gz (20 kB)
  Preparing metadata (setup.py) ... done
Building wheels for collected packages: ice
  Building wheel for ice (setup.py) ... done
  Created wheel for ice: filename=ice-0.0.2-py3-none-any.whl size=11665 sha256=ffefb8f1c506b273130b9ec84a7d4ab19ec5d90ab8e02d140fea871dd7e2d7f1
  Stored in directory: /root/.cache/pip/wheels/6c/66/d0/af65296dbeaaa9876682a13d683b53df92c35181f1441e822a
Successfully built ice
Installing collected packages: ice
Successfully installed ice-0.0.2
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

der Fehler bleibt

Sep 02 13:36:31 MurMur systemd[1]: Started LDAP Authentication Service for Mumble Server.
Sep 02 13:36:31 MurMur LDAPauth.py[8356]: Traceback (most recent call last):
Sep 02 13:36:31 MurMur LDAPauth.py[8356]:   File "/usr/local/sbin/LDAPauth.py", line 114, in <module>
Sep 02 13:36:31 MurMur LDAPauth.py[8356]:     import Ice
Sep 02 13:36:31 MurMur LDAPauth.py[8356]: ModuleNotFoundError: No module named 'Ice'
Sep 02 13:36:31 MurMur systemd[1]: mumble-ldapauth.service: Main process exited, code=exited, status=1/FAILURE
Sep 02 13:36:31 MurMur systemd[1]: mumble-ldapauth.service: Failed with result 'exit-code'.

vielleicht schreibe ich die Hersteller von MurMur mal an ob die eine Lösung haben weil so ist das nur die Nadel im Heuhaufen suchen

karzer Team-Icon

Wikiteam
Avatar von karzer

Anmeldungsdatum:
10. April 2022

Beiträge: 1597

Wohnort: Bad Oeynhausen

Hallo,

Sep 02 13:36:31 MurMur systemd[1]: Started LDAP Authentication Service for Mumble Server.
Sep 02 13:36:31 MurMur LDAPauth.py[8356]: Traceback (most recent call last):
Sep 02 13:36:31 MurMur LDAPauth.py[8356]:   File "/usr/local/sbin/LDAPauth.py", line 114, in <module>
Sep 02 13:36:31 MurMur LDAPauth.py[8356]:     import Ice
Sep 02 13:36:31 MurMur LDAPauth.py[8356]: ModuleNotFoundError: No module named 'Ice'
Sep 02 13:36:31 MurMur systemd[1]: mumble-ldapauth.service: Main process exited, code=exited, status=1/FAILURE
Sep 02 13:36:31 MurMur systemd[1]: mumble-ldapauth.service: Failed with result 'exit-code'.

Wo ist diese Datei? Bitte finden und editieren. Es sieht so aus, als wäre das Modul falschgeschrieben, es muss ice heißen.

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

#    If you are using Ubuntu/Debian (only Ubuntu 20.04 was tested) the following packages provide these:
#        * python3
#        * python3-zeroc-ice
#        * python3-ldap
#        * python3-daemon
#        * zeroc-ice-slice

import sys
import ldap
import Ice
import _thread
import urllib.request, urllib.error, urllib.parse
import logging
import configparser

from threading  import Timer
from optparse   import OptionParser
from logging    import (debug,
                        info,
                        warning,
                        error,
                        critical,
                        exception,
                        getLogger)

soll ich es klein schreiben?

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

so hab es in der Datei LDAPauth.py klein geschrieben gespeichert und pip3 install ice neu ausgeführt

Sep 02 14:30:22 MurMur LDAPauth.py[8482]: ModuleNotFoundError: No module named 'daemon'
Sep 02 14:30:22 MurMur LDAPauth.py[8482]: During handling of the above exception, another exception occurred:
Sep 02 14:30:22 MurMur LDAPauth.py[8482]: Traceback (most recent call last):
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:   File "/usr/local/sbin/LDAPauth.py", line 875, in <module>
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:     do_main_program()
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:   File "/usr/local/sbin/LDAPauth.py", line 214, in do_main_program
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:     slicedir = Ice.getSliceDir()
Sep 02 14:30:22 MurMur LDAPauth.py[8482]: NameError: name 'Ice' is not defined. Did you mean: 'ice'?
Sep 02 14:30:22 MurMur systemd[1]: mumble-ldapauth.service: Main process exited, code=exited, status=1/FAILURE
Sep 02 14:30:22 MurMur systemd[1]: mumble-ldapauth.service: Failed with result 'exit-code'.

jetzt gibt es neue Fehlermeldungen 😢

Doc_Symbiosis

Avatar von Doc_Symbiosis

Anmeldungsdatum:
11. Oktober 2006

Beiträge: 4475

Wohnort: Göttingen

Probier es doch einfach mal aus.

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

hab jetzt apt-get install python3-daemon installiert

root@MurMur:/usr/local/sbin# systemctl status mumble-ldapauth.service
x mumble-ldapauth.service - LDAP Authentication Service for Mumble Server
     Loaded: loaded (/etc/systemd/system/mumble-ldapauth.service; enabled; vendor preset: enabled)
     Active: failed (Result: exit-code) since Fri 2022-09-02 14:34:55 UTC; 6s ago
       Docs: https://github.com/mumble-voip/mumble-scripts/issues/19
    Process: 8609 ExecStart=/usr/local/sbin/LDAPauth.py (code=exited, status=1/FAILURE)
   Main PID: 8609 (code=exited, status=1/FAILURE)
        CPU: 271ms

Sep 02 14:34:55 MurMur systemd[1]: Started LDAP Authentication Service for Mumble Server.
Sep 02 14:34:55 MurMur systemd[1]: mumble-ldapauth.service: Main process exited, code=exited, status=1/FAILURE
Sep 02 14:34:55 MurMur systemd[1]: mumble-ldapauth.service: Failed with result 'exit-code'.

sagt er nicht mehr was fehlt

Doc_Symbiosis

Avatar von Doc_Symbiosis

Anmeldungsdatum:
11. Oktober 2006

Beiträge: 4475

Wohnort: Göttingen

Hm, dann würde ich an deiner Stelle mal den Autor der Software kontaktieren, bzw. mal suchen, ob es vielleicht diesbezüglich schon Bug-Reports gibt oder mich selbst ans Debuggen machen...

karzer Team-Icon

Wikiteam
Avatar von karzer

Anmeldungsdatum:
10. April 2022

Beiträge: 1597

Wohnort: Bad Oeynhausen

Windoofer schrieb:

so hab es in der Datei LDAPauth.py klein geschrieben gespeichert und pip3 install ice neu ausgeführt

Sep 02 14:30:22 MurMur LDAPauth.py[8482]: ModuleNotFoundError: No module named 'daemon'
Sep 02 14:30:22 MurMur LDAPauth.py[8482]: During handling of the above exception, another exception occurred:
Sep 02 14:30:22 MurMur LDAPauth.py[8482]: Traceback (most recent call last):
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:   File "/usr/local/sbin/LDAPauth.py", line 875, in <module>
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:     do_main_program()
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:   File "/usr/local/sbin/LDAPauth.py", line 214, in do_main_program
Sep 02 14:30:22 MurMur LDAPauth.py[8482]:     slicedir = Ice.getSliceDir()
Sep 02 14:30:22 MurMur LDAPauth.py[8482]: NameError: name 'Ice' is not defined. Did you mean: 'ice'?
Sep 02 14:30:22 MurMur systemd[1]: mumble-ldapauth.service: Main process exited, code=exited, status=1/FAILURE
Sep 02 14:30:22 MurMur systemd[1]: mumble-ldapauth.service: Failed with result 'exit-code'.

jetzt gibt es neue Fehlermeldungen 😢

Du musst es nicht neu ausführen. Wenn es einmal installiert ist, ist es da.

Zur Fehlermeldung:

> Sep 02 14:30:22 MurMur LDAPauth.py[8482]: NameError: name 'Ice' is not defined. Did you mean: 'ice'?

Schlechte Idee, den Sourcecode zu editieren.

Was fehlt, ist das Python-Modul zeroc-ice. Bitte Änderung in LDAPAuth.py rückgängig machen & das Paket installlieren.

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

@karzer

so hab es wieder in Ice geändert und python3-zeroc-ice installiert

apt-get install python3-zeroc-ice
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libmcpp0
The following NEW packages will be installed:
  libmcpp0 python3-zeroc-ice
0 upgraded, 2 newly installed, 0 to remove and 3 not upgraded.
Need to get 646 kB of archives.
After this operation, 2850 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://archive.ubuntu.com/ubuntu jammy/universe amd64 libmcpp0 amd64 2.7.2-5 [67.5 kB]
Get:2 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-zeroc-ice amd64 3.7.6-4ubuntu1 [578 kB]
Fetched 646 kB in 1s (685 kB/s)        
Selecting previously unselected package libmcpp0:amd64.
(Reading database ... 29184 files and directories currently installed.)
Preparing to unpack .../libmcpp0_2.7.2-5_amd64.deb ...
Unpacking libmcpp0:amd64 (2.7.2-5) ...
Selecting previously unselected package python3-zeroc-ice.
Preparing to unpack .../python3-zeroc-ice_3.7.6-4ubuntu1_amd64.deb ...
Unpacking python3-zeroc-ice (3.7.6-4ubuntu1) ...
Setting up libmcpp0:amd64 (2.7.2-5) ...
Setting up python3-zeroc-ice (3.7.6-4ubuntu1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.1) ...

jetzt kommt wieder der imort Fehler

Sep 02 16:21:59 MurMur systemd[1]: Started LDAP Authentication Service for Mumble Server.
Sep 02 16:22:00 MurMur LDAPauth.py[9115]: Traceback (most recent call last):
Sep 02 16:22:00 MurMur LDAPauth.py[9115]:   File "/usr/local/sbin/LDAPauth.py", line 114, in <module>
Sep 02 16:22:00 MurMur LDAPauth.py[9115]:     import Ice
Sep 02 16:22:00 MurMur LDAPauth.py[9115]:   File "/usr/lib/python3/dist-packages/Ice/__init__.py", line 78, in <module>
Sep 02 16:22:00 MurMur LDAPauth.py[9115]:     from Ice.Py3.IceFuture import FutureBase, wrap_future
Sep 02 16:22:00 MurMur LDAPauth.py[9115]: ModuleNotFoundError: No module named 'Ice.Py3'
Sep 02 16:22:00 MurMur systemd[1]: mumble-ldapauth.service: Main process exited, code=exited, status=1/FAILURE
Sep 02 16:22:00 MurMur systemd[1]: mumble-ldapauth.service: Failed with result 'exit-code'.

@Doc_Symbiosis

Die Entwickler sind gar nicht so einfach zu kontaktieren ich hab sie zwar auf sourcefroge gefunden aber es sind keine Kontaktdaten hinterlegt

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

ich hab diese Anleitung gefunden https://www.skelleton.net/2014/10/16/setting-up-an-active-directory-authenticated-mumble-server/ ich werden den Server morgen nochmal löschen und alles von vorne installieren mit dieser Anleitung

karzer Team-Icon

Wikiteam
Avatar von karzer

Anmeldungsdatum:
10. April 2022

Beiträge: 1597

Wohnort: Bad Oeynhausen

Bitte versuche es mal so zu installieren:

pip3 install zeroc-ice

Vorher bitte

sudo apt install libbzip2-dev

ausführen.

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

hi ich habe es probiert aber das paket klappt nicht

root@MurMur:~# apt install libbzip2-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package libbzip2-dev

auf der Seite https://linux-packages.com/ubuntu-jammy-jellyfish/package/libbz2-dev wird apt install libbz2-dev beschrieben

karzer Team-Icon

Wikiteam
Avatar von karzer

Anmeldungsdatum:
10. April 2022

Beiträge: 1597

Wohnort: Bad Oeynhausen

Ups, das war ein Fehler, habe den Paketnamen nicht nochmal nachgeguckt. Ist so richtig:

sudo apt-get install libbz2-dev

Windoofer

(Themenstarter)

Anmeldungsdatum:
14. März 2016

Beiträge: 150

Wohnort: Maxdorf

so es ist durch gelaufen

root@MurMur:~# pip3 install zeroc-ice
Collecting zeroc-ice
  Using cached zeroc-ice-3.7.8.tar.gz (1.3 MB)
  Preparing metadata (setup.py) ... done
Building wheels for collected packages: zeroc-ice
  Building wheel for zeroc-ice (setup.py) ... error
  error: subprocess-exited-with-error
  
  × python setup.py bdist_wheel did not run successfully.
  │ exit code: 1
  ╰─> [259 lines of output]
      running bdist_wheel
      running build
      running build_py
      creating build
      creating build/lib.linux-x86_64-3.10
      copying lib/slice2py.py -> build/lib.linux-x86_64-3.10
      creating build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/RouterF_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/PermissionsVerifier_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/PermissionsVerifierF_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/SSLInfo_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/__init__.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/Session_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/Metrics_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/Router_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      creating build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/PropertiesF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ObjectAdapter_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ObjectAdapterF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/SliceChecksumDict_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ImplicitContext_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Instrumentation_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/InstrumentationF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ValueFactory_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/EndpointF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/RouterF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/CommunicatorF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Plugin_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/EndpointTypes_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Connection_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Locator_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/RemoteLogger_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Logger_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/PropertiesAdmin_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Version_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Endpoint_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Router_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ConnectionF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Properties_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ImplicitContextF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/PluginF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ServantLocator_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/LocalException_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/LocatorF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ServantLocatorF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ObjectFactory_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/LoggerF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Metrics_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Communicator_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/FacetMap_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/__init__.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/BuiltinSequences_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Current_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Process_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Identity_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ProcessF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      creating build/lib.linux-x86_64-3.10/IceBox
      copying lib/IceBox/__init__.py -> build/lib.linux-x86_64-3.10/IceBox
      copying lib/IceBox/IceBox_ice.py -> build/lib.linux-x86_64-3.10/IceBox
      creating build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/FileParser_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Admin_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Descriptor_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Exception_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/__init__.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Registry_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Session_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/UserAccountMapper_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/PluginFacade_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      creating build/lib.linux-x86_64-3.10/IceMX
      copying lib/IceMX/__init__.py -> build/lib.linux-x86_64-3.10/IceMX
      creating build/lib.linux-x86_64-3.10/IcePatch2
      copying lib/IcePatch2/FileInfo_ice.py -> build/lib.linux-x86_64-3.10/IcePatch2
      copying lib/IcePatch2/FileServer_ice.py -> build/lib.linux-x86_64-3.10/IcePatch2
      copying lib/IcePatch2/__init__.py -> build/lib.linux-x86_64-3.10/IcePatch2
      creating build/lib.linux-x86_64-3.10/IceStorm
      copying lib/IceStorm/IceStorm_ice.py -> build/lib.linux-x86_64-3.10/IceStorm
      copying lib/IceStorm/Metrics_ice.py -> build/lib.linux-x86_64-3.10/IceStorm
      copying lib/IceStorm/__init__.py -> build/lib.linux-x86_64-3.10/IceStorm
      package init file 'lib/slice/__init__.py' not found (or not a regular file)
      creating build/lib.linux-x86_64-3.10/Ice/Py3
      copying lib/Ice/Py3/IceFuture.py -> build/lib.linux-x86_64-3.10/Ice/Py3
      copying lib/Ice/Py3/__init__.py -> build/lib.linux-x86_64-3.10/Ice/Py3
      running egg_info
      writing lib/zeroc_ice.egg-info/PKG-INFO
      writing dependency_links to lib/zeroc_ice.egg-info/dependency_links.txt
      writing entry points to lib/zeroc_ice.egg-info/entry_points.txt
      writing top-level names to lib/zeroc_ice.egg-info/top_level.txt
      reading manifest file 'lib/zeroc_ice.egg-info/SOURCES.txt'
      reading manifest template 'MANIFEST.in'
      adding license file 'LICENSE'
      writing manifest file 'lib/zeroc_ice.egg-info/SOURCES.txt'
      creating build/lib.linux-x86_64-3.10/slice
      creating build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/Metrics.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/PermissionsVerifier.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/PermissionsVerifierF.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/Router.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/RouterF.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/SSLInfo.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/Session.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      creating build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/BuiltinSequences.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Communicator.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/CommunicatorF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Connection.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ConnectionF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Current.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Endpoint.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/EndpointF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/EndpointTypes.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/FacetMap.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Identity.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ImplicitContext.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ImplicitContextF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Instrumentation.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/InstrumentationF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/LocalException.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Locator.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/LocatorF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Logger.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/LoggerF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Metrics.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ObjectAdapter.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ObjectAdapterF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ObjectFactory.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Plugin.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/PluginF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Process.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ProcessF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Properties.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/PropertiesAdmin.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/PropertiesF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/RemoteLogger.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Router.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/RouterF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ServantLocator.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ServantLocatorF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/SliceChecksumDict.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ValueFactory.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Version.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      creating build/lib.linux-x86_64-3.10/slice/IceBT
      copying lib/slice/IceBT/ConnectionInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceBT
      copying lib/slice/IceBT/EndpointInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceBT
      copying lib/slice/IceBT/Types.ice -> build/lib.linux-x86_64-3.10/slice/IceBT
      creating build/lib.linux-x86_64-3.10/slice/IceBox
      copying lib/slice/IceBox/IceBox.ice -> build/lib.linux-x86_64-3.10/slice/IceBox
      creating build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Admin.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Descriptor.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Exception.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/FileParser.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/PluginFacade.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Registry.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Session.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/UserAccountMapper.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      creating build/lib.linux-x86_64-3.10/slice/IceIAP
      copying lib/slice/IceIAP/ConnectionInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceIAP
      copying lib/slice/IceIAP/EndpointInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceIAP
      creating build/lib.linux-x86_64-3.10/slice/IcePatch2
      copying lib/slice/IcePatch2/FileInfo.ice -> build/lib.linux-x86_64-3.10/slice/IcePatch2
      copying lib/slice/IcePatch2/FileServer.ice -> build/lib.linux-x86_64-3.10/slice/IcePatch2
      creating build/lib.linux-x86_64-3.10/slice/IceSSL
      copying lib/slice/IceSSL/ConnectionInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceSSL
      copying lib/slice/IceSSL/ConnectionInfoF.ice -> build/lib.linux-x86_64-3.10/slice/IceSSL
      copying lib/slice/IceSSL/EndpointInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceSSL
      creating build/lib.linux-x86_64-3.10/slice/IceStorm
      copying lib/slice/IceStorm/IceStorm.ice -> build/lib.linux-x86_64-3.10/slice/IceStorm
      copying lib/slice/IceStorm/Metrics.ice -> build/lib.linux-x86_64-3.10/slice/IceStorm
      running build_ext
      building 'IcePy' extension
      creating build/temp.linux-x86_64-3.10
      creating build/temp.linux-x86_64-3.10/src
      creating build/temp.linux-x86_64-3.10/src/ice
      creating build/temp.linux-x86_64-3.10/src/ice/cpp
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceDiscovery
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceLocatorDiscovery
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceSSL
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceUtil
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/Slice
      creating build/temp.linux-x86_64-3.10/src/ice/mcpp
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/BatchRequestInterceptor.cpp -o build/temp.linux-x86_64-3.10/src/BatchRequestInterceptor.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Communicator.cpp -o build/temp.linux-x86_64-3.10/src/Communicator.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Connection.cpp -o build/temp.linux-x86_64-3.10/src/Connection.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ConnectionInfo.cpp -o build/temp.linux-x86_64-3.10/src/ConnectionInfo.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Current.cpp -o build/temp.linux-x86_64-3.10/src/Current.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Dispatcher.cpp -o build/temp.linux-x86_64-3.10/src/Dispatcher.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Endpoint.cpp -o build/temp.linux-x86_64-3.10/src/Endpoint.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/EndpointInfo.cpp -o build/temp.linux-x86_64-3.10/src/EndpointInfo.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ImplicitContext.cpp -o build/temp.linux-x86_64-3.10/src/ImplicitContext.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Init.cpp -o build/temp.linux-x86_64-3.10/src/Init.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Logger.cpp -o build/temp.linux-x86_64-3.10/src/Logger.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ObjectAdapter.cpp -o build/temp.linux-x86_64-3.10/src/ObjectAdapter.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Operation.cpp -o build/temp.linux-x86_64-3.10/src/Operation.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Properties.cpp -o build/temp.linux-x86_64-3.10/src/Properties.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/PropertiesAdmin.cpp -o build/temp.linux-x86_64-3.10/src/PropertiesAdmin.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Proxy.cpp -o build/temp.linux-x86_64-3.10/src/Proxy.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Slice.cpp -o build/temp.linux-x86_64-3.10/src/Slice.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Thread.cpp -o build/temp.linux-x86_64-3.10/src/Thread.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Types.cpp -o build/temp.linux-x86_64-3.10/src/Types.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Util.cpp -o build/temp.linux-x86_64-3.10/src/Util.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ValueFactoryManager.cpp -o build/temp.linux-x86_64-3.10/src/ValueFactoryManager.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ACM.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ACM.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Acceptor.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Acceptor.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ArgVector.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ArgVector.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/AsyncResult.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/AsyncResult.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Base64.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Base64.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/BatchRequestQueue.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/BatchRequestQueue.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Buffer.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Buffer.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/BuiltinSequences.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/BuiltinSequences.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CollocatedRequestHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CollocatedRequestHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Communicator.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Communicator.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CommunicatorF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CommunicatorF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CommunicatorI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CommunicatorI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Cond.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Cond.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectRequestHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectRequestHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Connection.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Connection.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionFactory.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionFactory.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionRequestHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionRequestHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Connector.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Connector.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CountDownLatch.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CountDownLatch.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Current.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Current.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/DefaultsAndOverrides.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/DefaultsAndOverrides.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/DispatchInterceptor.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/DispatchInterceptor.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/DynamicLibrary.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/DynamicLibrary.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Endpoint.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Endpoint.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointFactory.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointFactory.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointFactoryManager.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointFactoryManager.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointTypes.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointTypes.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EventHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EventHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Exception.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Exception.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/FacetMap.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/FacetMap.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/FactoryTable.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/FactoryTable.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/FactoryTableInit.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/FactoryTableInit.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/GCObject.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/GCObject.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/HttpParser.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/HttpParser.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/IPEndpointI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/IPEndpointI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/IconvStringConverter.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/IconvStringConverter.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Identity.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Identity.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ImplicitContext.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ImplicitContext.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ImplicitContextF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ImplicitContextF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ImplicitContextI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ImplicitContextI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Incoming.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Incoming.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/IncomingAsync.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/IncomingAsync.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Initialize.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Initialize.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/InputStream.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/InputStream.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Instance.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Instance.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Instrumentation.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Instrumentation.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/InstrumentationF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/InstrumentationF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/InstrumentationI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/InstrumentationI.o -w
      x86_64-linux-gnu-gcc: fatal error: Killed signal terminated program cc1plus
      compilation terminated.
      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 zeroc-ice
  Running setup.py clean for zeroc-ice
Failed to build zeroc-ice
Installing collected packages: zeroc-ice
  Running setup.py install for zeroc-ice ... error
  error: subprocess-exited-with-error
  
  × Running setup.py install for zeroc-ice did not run successfully.
  │ exit code: 1
  ╰─> [261 lines of output]
      running install
      /usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
        warnings.warn(
      running build
      running build_py
      creating build
      creating build/lib.linux-x86_64-3.10
      copying lib/slice2py.py -> build/lib.linux-x86_64-3.10
      creating build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/RouterF_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/PermissionsVerifier_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/PermissionsVerifierF_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/SSLInfo_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/__init__.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/Session_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/Metrics_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      copying lib/Glacier2/Router_ice.py -> build/lib.linux-x86_64-3.10/Glacier2
      creating build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/PropertiesF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ObjectAdapter_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ObjectAdapterF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/SliceChecksumDict_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ImplicitContext_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Instrumentation_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/InstrumentationF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ValueFactory_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/EndpointF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/RouterF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/CommunicatorF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Plugin_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/EndpointTypes_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Connection_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Locator_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/RemoteLogger_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Logger_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/PropertiesAdmin_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Version_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Endpoint_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Router_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ConnectionF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Properties_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ImplicitContextF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/PluginF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ServantLocator_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/LocalException_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/LocatorF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ServantLocatorF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ObjectFactory_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/LoggerF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Metrics_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Communicator_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/FacetMap_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/__init__.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/BuiltinSequences_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Current_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Process_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/Identity_ice.py -> build/lib.linux-x86_64-3.10/Ice
      copying lib/Ice/ProcessF_ice.py -> build/lib.linux-x86_64-3.10/Ice
      creating build/lib.linux-x86_64-3.10/IceBox
      copying lib/IceBox/__init__.py -> build/lib.linux-x86_64-3.10/IceBox
      copying lib/IceBox/IceBox_ice.py -> build/lib.linux-x86_64-3.10/IceBox
      creating build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/FileParser_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Admin_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Descriptor_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Exception_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/__init__.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Registry_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/Session_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/UserAccountMapper_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      copying lib/IceGrid/PluginFacade_ice.py -> build/lib.linux-x86_64-3.10/IceGrid
      creating build/lib.linux-x86_64-3.10/IceMX
      copying lib/IceMX/__init__.py -> build/lib.linux-x86_64-3.10/IceMX
      creating build/lib.linux-x86_64-3.10/IcePatch2
      copying lib/IcePatch2/FileInfo_ice.py -> build/lib.linux-x86_64-3.10/IcePatch2
      copying lib/IcePatch2/FileServer_ice.py -> build/lib.linux-x86_64-3.10/IcePatch2
      copying lib/IcePatch2/__init__.py -> build/lib.linux-x86_64-3.10/IcePatch2
      creating build/lib.linux-x86_64-3.10/IceStorm
      copying lib/IceStorm/IceStorm_ice.py -> build/lib.linux-x86_64-3.10/IceStorm
      copying lib/IceStorm/Metrics_ice.py -> build/lib.linux-x86_64-3.10/IceStorm
      copying lib/IceStorm/__init__.py -> build/lib.linux-x86_64-3.10/IceStorm
      package init file 'lib/slice/__init__.py' not found (or not a regular file)
      creating build/lib.linux-x86_64-3.10/Ice/Py3
      copying lib/Ice/Py3/IceFuture.py -> build/lib.linux-x86_64-3.10/Ice/Py3
      copying lib/Ice/Py3/__init__.py -> build/lib.linux-x86_64-3.10/Ice/Py3
      running egg_info
      writing lib/zeroc_ice.egg-info/PKG-INFO
      writing dependency_links to lib/zeroc_ice.egg-info/dependency_links.txt
      writing entry points to lib/zeroc_ice.egg-info/entry_points.txt
      writing top-level names to lib/zeroc_ice.egg-info/top_level.txt
      reading manifest file 'lib/zeroc_ice.egg-info/SOURCES.txt'
      reading manifest template 'MANIFEST.in'
      adding license file 'LICENSE'
      writing manifest file 'lib/zeroc_ice.egg-info/SOURCES.txt'
      creating build/lib.linux-x86_64-3.10/slice
      creating build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/Metrics.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/PermissionsVerifier.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/PermissionsVerifierF.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/Router.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/RouterF.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/SSLInfo.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      copying lib/slice/Glacier2/Session.ice -> build/lib.linux-x86_64-3.10/slice/Glacier2
      creating build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/BuiltinSequences.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Communicator.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/CommunicatorF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Connection.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ConnectionF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Current.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Endpoint.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/EndpointF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/EndpointTypes.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/FacetMap.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Identity.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ImplicitContext.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ImplicitContextF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Instrumentation.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/InstrumentationF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/LocalException.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Locator.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/LocatorF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Logger.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/LoggerF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Metrics.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ObjectAdapter.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ObjectAdapterF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ObjectFactory.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Plugin.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/PluginF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Process.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ProcessF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Properties.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/PropertiesAdmin.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/PropertiesF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/RemoteLogger.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Router.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/RouterF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ServantLocator.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ServantLocatorF.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/SliceChecksumDict.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/ValueFactory.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      copying lib/slice/Ice/Version.ice -> build/lib.linux-x86_64-3.10/slice/Ice
      creating build/lib.linux-x86_64-3.10/slice/IceBT
      copying lib/slice/IceBT/ConnectionInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceBT
      copying lib/slice/IceBT/EndpointInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceBT
      copying lib/slice/IceBT/Types.ice -> build/lib.linux-x86_64-3.10/slice/IceBT
      creating build/lib.linux-x86_64-3.10/slice/IceBox
      copying lib/slice/IceBox/IceBox.ice -> build/lib.linux-x86_64-3.10/slice/IceBox
      creating build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Admin.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Descriptor.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Exception.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/FileParser.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/PluginFacade.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Registry.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/Session.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      copying lib/slice/IceGrid/UserAccountMapper.ice -> build/lib.linux-x86_64-3.10/slice/IceGrid
      creating build/lib.linux-x86_64-3.10/slice/IceIAP
      copying lib/slice/IceIAP/ConnectionInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceIAP
      copying lib/slice/IceIAP/EndpointInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceIAP
      creating build/lib.linux-x86_64-3.10/slice/IcePatch2
      copying lib/slice/IcePatch2/FileInfo.ice -> build/lib.linux-x86_64-3.10/slice/IcePatch2
      copying lib/slice/IcePatch2/FileServer.ice -> build/lib.linux-x86_64-3.10/slice/IcePatch2
      creating build/lib.linux-x86_64-3.10/slice/IceSSL
      copying lib/slice/IceSSL/ConnectionInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceSSL
      copying lib/slice/IceSSL/ConnectionInfoF.ice -> build/lib.linux-x86_64-3.10/slice/IceSSL
      copying lib/slice/IceSSL/EndpointInfo.ice -> build/lib.linux-x86_64-3.10/slice/IceSSL
      creating build/lib.linux-x86_64-3.10/slice/IceStorm
      copying lib/slice/IceStorm/IceStorm.ice -> build/lib.linux-x86_64-3.10/slice/IceStorm
      copying lib/slice/IceStorm/Metrics.ice -> build/lib.linux-x86_64-3.10/slice/IceStorm
      running build_ext
      building 'IcePy' extension
      creating build/temp.linux-x86_64-3.10
      creating build/temp.linux-x86_64-3.10/src
      creating build/temp.linux-x86_64-3.10/src/ice
      creating build/temp.linux-x86_64-3.10/src/ice/cpp
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceDiscovery
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceLocatorDiscovery
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceSSL
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/IceUtil
      creating build/temp.linux-x86_64-3.10/src/ice/cpp/src/Slice
      creating build/temp.linux-x86_64-3.10/src/ice/mcpp
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/BatchRequestInterceptor.cpp -o build/temp.linux-x86_64-3.10/src/BatchRequestInterceptor.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Communicator.cpp -o build/temp.linux-x86_64-3.10/src/Communicator.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Connection.cpp -o build/temp.linux-x86_64-3.10/src/Connection.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ConnectionInfo.cpp -o build/temp.linux-x86_64-3.10/src/ConnectionInfo.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Current.cpp -o build/temp.linux-x86_64-3.10/src/Current.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Dispatcher.cpp -o build/temp.linux-x86_64-3.10/src/Dispatcher.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Endpoint.cpp -o build/temp.linux-x86_64-3.10/src/Endpoint.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/EndpointInfo.cpp -o build/temp.linux-x86_64-3.10/src/EndpointInfo.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ImplicitContext.cpp -o build/temp.linux-x86_64-3.10/src/ImplicitContext.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Init.cpp -o build/temp.linux-x86_64-3.10/src/Init.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Logger.cpp -o build/temp.linux-x86_64-3.10/src/Logger.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ObjectAdapter.cpp -o build/temp.linux-x86_64-3.10/src/ObjectAdapter.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Operation.cpp -o build/temp.linux-x86_64-3.10/src/Operation.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Properties.cpp -o build/temp.linux-x86_64-3.10/src/Properties.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/PropertiesAdmin.cpp -o build/temp.linux-x86_64-3.10/src/PropertiesAdmin.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Proxy.cpp -o build/temp.linux-x86_64-3.10/src/Proxy.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Slice.cpp -o build/temp.linux-x86_64-3.10/src/Slice.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Thread.cpp -o build/temp.linux-x86_64-3.10/src/Thread.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Types.cpp -o build/temp.linux-x86_64-3.10/src/Types.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/Util.cpp -o build/temp.linux-x86_64-3.10/src/Util.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ValueFactoryManager.cpp -o build/temp.linux-x86_64-3.10/src/ValueFactoryManager.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ACM.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ACM.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Acceptor.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Acceptor.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ArgVector.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ArgVector.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/AsyncResult.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/AsyncResult.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Base64.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Base64.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/BatchRequestQueue.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/BatchRequestQueue.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Buffer.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Buffer.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/BuiltinSequences.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/BuiltinSequences.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CollocatedRequestHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CollocatedRequestHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Communicator.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Communicator.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CommunicatorF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CommunicatorF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CommunicatorI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CommunicatorI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Cond.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Cond.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectRequestHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectRequestHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Connection.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Connection.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionFactory.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionFactory.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ConnectionRequestHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ConnectionRequestHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Connector.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Connector.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/CountDownLatch.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/CountDownLatch.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Current.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Current.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/DefaultsAndOverrides.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/DefaultsAndOverrides.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/DispatchInterceptor.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/DispatchInterceptor.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/DynamicLibrary.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/DynamicLibrary.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Endpoint.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Endpoint.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointFactory.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointFactory.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointFactoryManager.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointFactoryManager.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EndpointTypes.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EndpointTypes.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/EventHandler.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/EventHandler.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Exception.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Exception.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/FacetMap.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/FacetMap.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/FactoryTable.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/FactoryTable.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/FactoryTableInit.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/FactoryTableInit.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/GCObject.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/GCObject.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/HttpParser.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/HttpParser.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/IPEndpointI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/IPEndpointI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/IconvStringConverter.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/IconvStringConverter.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Identity.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Identity.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ImplicitContext.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ImplicitContext.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ImplicitContextF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ImplicitContextF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/ImplicitContextI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/ImplicitContextI.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Incoming.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Incoming.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/IncomingAsync.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/IncomingAsync.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Initialize.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Initialize.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/InputStream.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/InputStream.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Instance.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Instance.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/Instrumentation.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/Instrumentation.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/InstrumentationF.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/InstrumentationF.o -w
      x86_64-linux-gnu-gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -g -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DICE_PYPI -DICE_STATIC_LIBS -Isrc -Isrc/ice/cpp/include -Isrc/ice/cpp/include/generated -Isrc/ice/cpp/src -I/usr/include/python3.10 -c src/ice/cpp/src/Ice/InstrumentationI.cpp -o build/temp.linux-x86_64-3.10/src/ice/cpp/src/Ice/InstrumentationI.o -w
      x86_64-linux-gnu-gcc: fatal error: Killed signal terminated program cc1plus
      compilation terminated.
      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: legacy-install-failure

× Encountered error while trying to install package.
╰─> zeroc-ice

note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.

Fehler bleibt bestehen

> Sep 02 19:37:43 MurMur systemd[1]: Started LDAP Authentication Service for Mumble Server.
> Sep 02 19:37:43 MurMur LDAPauth.py[10374]: Traceback (most recent call last):
> Sep 02 19:37:43 MurMur LDAPauth.py[10374]:   File "/usr/local/sbin/LDAPauth.py", line 114, in <module>
> Sep 02 19:37:43 MurMur LDAPauth.py[10374]:     import Ice
> Sep 02 19:37:43 MurMur LDAPauth.py[10374]:   File "/usr/lib/python3/dist-packages/Ice/__init__.py", line 78, in <module>
> Sep 02 19:37:43 MurMur LDAPauth.py[10374]:     from Ice.Py3.IceFuture import FutureBase, wrap_future
> Sep 02 19:37:43 MurMur LDAPauth.py[10374]: ModuleNotFoundError: No module named 'Ice.Py3'
> Sep 02 19:37:43 MurMur systemd[1]: mumble-ldapauth.service: Main process exited, code=exited, status=1/FAILURE
> Sep 02 19:37:43 MurMur systemd[1]: mumble-ldapauth.service: Failed with result 'exit-code'.