Started by upstream project "Msrc_uB__librealsense2_framos__ubuntu_bionic__source" build number 1 originally caused by: Started by user Marc Hanheide Running as SYSTEM Building remotely on build client 2 (slave buildslave indigo_devel_default buildagent) in workspace /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary [ssh-agent] Looking for ssh-agent implementation... [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) $ ssh-agent SSH_AUTH_SOCK=/tmp/ssh-wnxoDjVNRWnU/agent.9550 SSH_AGENT_PID=9552 [ssh-agent] Started. Running ssh-add (command line suppressed) Identity added: /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary@tmp/private_key_2974023753926004559.key (/home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary@tmp/private_key_2974023753926004559.key) [ssh-agent] Using credentials jenkins-slave # BEGIN SECTION: Check upstream projects Verify that no recursive upstream project is broken: - 'Msrc_uB__librealsense2_framos__ubuntu_bionic__source' build '1' has result 'SUCCESS' All recursive upstream projects are (un)stable # END SECTION # BEGIN SECTION: Check free disk space Usable disk space = 111399669760 bytes Free space threshold = 5368709120 bytes # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins6060582549923493000.sh + echo # BEGIN SECTION: docker version # BEGIN SECTION: docker version + docker version Client: Version: 17.05.0-ce API version: 1.29 Go version: go1.7.5 Git commit: 89658be Built: Thu May 4 22:06:06 2017 OS/Arch: linux/amd64 Server: Version: 17.05.0-ce API version: 1.29 (minimum version 1.12) Go version: go1.7.5 Git commit: 89658be Built: Thu May 4 22:06:06 2017 OS/Arch: linux/amd64 Experimental: false + echo # END SECTION # END SECTION + echo # BEGIN SECTION: docker info # BEGIN SECTION: docker info + docker info Containers: 0 Running: 0 Paused: 0 Stopped: 0 Images: 164 Server Version: 17.05.0-ce Storage Driver: aufs Root Dir: /var/lib/docker/aufs Backing Filesystem: extfs Dirs: 685 Dirperm1 Supported: false Logging Driver: json-file Cgroup Driver: cgroupfs Plugins: Volume: local Network: bridge host macvlan null overlay Swarm: inactive Runtimes: runc Default Runtime: runc Init Binary: docker-init containerd version: 9048e5e50717ea4497b757314bad98ea3763c145 runc version: 9c2d8d184e5da67c95d601382adf14862e4f2228 init version: 949e6fa Security Options: apparmor Kernel Version: 3.13.0-29-generic Operating System: Ubuntu 14.04 LTS OSType: linux Architecture: x86_64 CPUs: 2 Total Memory: 3.861GiB Name: lcas-buildfarm-slave-1 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE Docker Root Dir: /var/lib/docker Debug Mode (client): false Debug Mode (server): false Registry: https://index.docker.io/v1/ Experimental: false Insecure Registries: 127.0.0.0/8 Live Restore Enabled: false WARNING: No swap limit support + echo # END SECTION # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins3818389480900940642.sh + echo # BEGIN SECTION: Check docker status # BEGIN SECTION: Check docker status + echo Testing trivial docker invocation... Testing trivial docker invocation... + docker run --rm ubuntu:bionic true + echo 'docker run' returned 0 'docker run' returned 0 docker seems operational, continuing [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins26368575358843623.sh + echo # END SECTION # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins7898861715285099339.sh + echo # BEGIN SECTION: Embed wrapper scripts # BEGIN SECTION: Embed wrapper scripts + rm -fr wrapper_scripts + mkdir wrapper_scripts + printf #!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an "AS IS" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert "Command '%%s' not implemented" %% command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print("Reinvoke 'git %%s' (%%d/%%d) after sleeping %%s seconds" %%\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print("Invoking '%%s'" %% ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main()) + echo # END SECTION # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins4788252170683576851.sh + echo # BEGIN SECTION: Clone ros_buildfarm # BEGIN SECTION: Clone ros_buildfarm + rm -fr ros_buildfarm + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' Cloning into 'ros_buildfarm'... + git -C ros_buildfarm --no-pager log -n 1 commit 5847ba20c70a194f12d32fd0ad5364bed338f8e2 Author: Marc Hanheide Date: Fri Jun 5 12:50:43 2020 +0100 added openssl + rm -fr ros_buildfarm/.git + rm -fr ros_buildfarm/doc + echo # END SECTION # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins5811839815070957659.sh + echo # BEGIN SECTION: Write PGP repository keys # BEGIN SECTION: Write PGP repository keys + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/keys + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/keys/* + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: GnuPG v1.4.11 (GNU/Linux) mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== =nFcN -----END PGP PUBLIC KEY BLOCK----- + echo -----BEGIN PGP PUBLIC KEY BLOCK----- Version: SKS 1.1.6 Comment: Hostname: keyserver.ubuntu.com mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd =4Ofr -----END PGP PUBLIC KEY BLOCK----- + echo # END SECTION # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins7824405839857546642.sh + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_generating_docker + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_generating_docker + sleep 1 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 9716 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid + echo # BEGIN SECTION: Generate Dockerfile - binarydeb task # BEGIN SECTION: Generate Dockerfile - binarydeb task + export TZ=GMT+00 + export PYTHONPATH=/home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm: + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/release/run_binarydeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic librealsense2_framos ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/keys/1.key --target-repository http://10.210.9.154/ubuntu/building --binarydeb-dir /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/binarydeb --dockerfile-dir /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_generating_docker --env-vars --append-timestamp Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/keys/0.key) http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/keys/1.key) Generating Dockerfile '/home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_generating_docker/Dockerfile': # generated from release/binarydeb_create_task.Dockerfile.em FROM ubuntu:bionic VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -l -m buildfarm RUN mkdir /tmp/keys RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2020-06-05 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml openssl # always invalidate to actually have the latest apt repo state RUN echo "2020-06-05 16:08:12 +0000" RUN python3 -u /tmp/wrapper_scripts/apt.py update USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic librealsense2_framos --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic librealsense2_framos --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic librealsense2_framos ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --env-vars --dockerfile-dir /tmp/docker_build_binarydeb"] + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Build Dockerfile - binarydeb task # BEGIN SECTION: Build Dockerfile - binarydeb task + cd /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_generating_docker + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic Check docker base image for updates: docker pull ubuntu:bionic bionic: Pulling from library/ubuntu Digest: sha256:3235326357dfb65f1781dbc4df3b834546d8bf914e82cce58e6e6b676e23ce8f Status: Image is up to date for ubuntu:bionic + docker build --force-rm -t binarydeb_task_generation.melodic_ubuntu_bionic_amd64_librealsense2_framos . Sending build context to Docker daemon 20.99kB Step 1/28 : FROM ubuntu:bionic ---> c3c304cb4f22 Step 2/28 : VOLUME /var/cache/apt/archives ---> Using cache ---> 15a1441648bd Step 3/28 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 01effda6aa19 Step 4/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 8001f4249f40 Step 5/28 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 03977fb36a34 Step 6/28 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> 9259f07952ec Step 7/28 : ENV LANG en_US.UTF-8 ---> Using cache ---> 0e8e98ea0bbc Step 8/28 : ENV TZ GMT+00 ---> Using cache ---> fe196eedfcf0 Step 9/28 : RUN useradd -u 1002 -l -m buildfarm ---> Using cache ---> 9006f2fb0f27 Step 10/28 : RUN mkdir /tmp/keys ---> Using cache ---> 2e7bc5fb7e42 Step 11/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 5884c6d2ebc5 Step 12/28 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> 9c060466db58 Step 13/28 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> c69d41aff8a5 Step 14/28 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Running in 42a99ba419ec deb http://10.210.9.154/ubuntu/building bionic main ---> da0b7cbb153b Removing intermediate container 42a99ba419ec Step 15/28 : RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Running in 2aa610c6cfe2 deb-src http://10.210.9.154/ubuntu/building bionic main ---> b6184dde4282 Removing intermediate container 2aa610c6cfe2 Step 16/28 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Running in 41a4ca046106 deb http://packages.ros.org/ros/ubuntu bionic main ---> 7e6b5045c5b2 Removing intermediate container 41a4ca046106 Step 17/28 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) ---> Running in 9fd8ec22e64e ---> 401c05732b3b Removing intermediate container 9fd8ec22e64e Step 18/28 : RUN mkdir /tmp/wrapper_scripts ---> Running in 836c0afbba02 ---> b4958ad7c39e Removing intermediate container 836c0afbba02 Step 19/28 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Running in 1f8a07593f81 ---> e0b22c66b830 Removing intermediate container 1f8a07593f81 Step 20/28 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Running in eab65f4730cb ---> 889f37b7d65e Removing intermediate container eab65f4730cb Step 21/28 : RUN echo "2020-06-05 (+0000)" ---> Running in 7449c8802c50 2020-06-05 (+0000) ---> 5bd666225dc8 Removing intermediate container 7449c8802c50 Step 22/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Running in 383cc0b8023b Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease Get:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Get:7 http://packages.ros.org/ros/ubuntu bionic InRelease [4,669 B] Get:8 http://10.210.9.154/ubuntu/building bionic/main Sources [132 kB] Get:9 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [159 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/multiverse Sources [216 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Sources [7,152 B] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1,230 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,387 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-security/multiverse Sources [3,232 B] Get:15 http://archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [8,815 B] Get:16 http://packages.ros.org/ros/ubuntu bionic/main amd64 Packages [672 kB] Fetched 4,164 kB in 3s (1,564 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3-minimal python3.6 python3.6-minimal xz-utils Suggested packages: python3-doc python3-tk python3-venv python3.6-venv python3.6-doc binutils binfmt-support The following NEW packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3 python3-minimal python3.6 python3.6-minimal xz-utils 0 upgraded, 14 newly installed, 0 to remove and 4 not upgraded. Need to get 4,687 kB of archives. After this operation, 28.3 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04ubuntu1 [533 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04ubuntu1 [1,609 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 mime-support all 3.60ubuntu1 [30.1 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04ubuntu1 [1,710 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04ubuntu1 [203 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7,240 B] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.4 [184 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.4 [68.6 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 file amd64 1:5.32-2ubuntu0.4 [22.1 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xz-utils amd64 5.2.2-1.3 [83.8 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 4,687 kB in 0s (28.9 MB/s) Selecting previously unselected package libpython3.6-minimal:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5006 files and directories currently installed.) Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Selecting previously unselected package python3.6-minimal. Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking python3.6-minimal (3.6.9-1~18.04ubuntu1) ... Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1) ... Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Setting up python3.6-minimal (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package python3-minimal. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5253 files and directories currently installed.) Preparing to unpack .../0-python3-minimal_3.6.7-1~18.04_amd64.deb ... Unpacking python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package mime-support. Preparing to unpack .../1-mime-support_3.60ubuntu1_all.deb ... Unpacking mime-support (3.60ubuntu1) ... Selecting previously unselected package libmpdec2:amd64. Preparing to unpack .../2-libmpdec2_2.4.2-1ubuntu1_amd64.deb ... Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ... Selecting previously unselected package libpython3.6-stdlib:amd64. Preparing to unpack .../3-libpython3.6-stdlib_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package python3.6. Preparing to unpack .../4-python3.6_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking python3.6 (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package libpython3-stdlib:amd64. Preparing to unpack .../5-libpython3-stdlib_3.6.7-1~18.04_amd64.deb ... Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package python3. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5683 files and directories currently installed.) Preparing to unpack .../python3_3.6.7-1~18.04_amd64.deb ... Unpacking python3 (3.6.7-1~18.04) ... Selecting previously unselected package libmagic-mgc. Preparing to unpack .../libmagic-mgc_1%3a5.32-2ubuntu0.4_amd64.deb ... Unpacking libmagic-mgc (1:5.32-2ubuntu0.4) ... Selecting previously unselected package libmagic1:amd64. Preparing to unpack .../libmagic1_1%3a5.32-2ubuntu0.4_amd64.deb ... Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.4) ... Selecting previously unselected package file. Preparing to unpack .../file_1%3a5.32-2ubuntu0.4_amd64.deb ... Unpacking file (1:5.32-2ubuntu0.4) ... Selecting previously unselected package xz-utils. Preparing to unpack .../xz-utils_5.2.2-1.3_amd64.deb ... Unpacking xz-utils (5.2.2-1.3) ... Setting up mime-support (3.60ubuntu1) ... Setting up libmagic-mgc (1:5.32-2ubuntu0.4) ... Setting up libmagic1:amd64 (1:5.32-2ubuntu0.4) ... Setting up xz-utils (5.2.2-1.3) ... update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ... Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1) ... Setting up python3.6 (3.6.9-1~18.04ubuntu1) ... Setting up file (1:5.32-2ubuntu0.4) ... Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3 (3.6.7-1~18.04) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... ---> f4bbb3555c70 Removing intermediate container 383cc0b8023b Step 23/28 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml openssl ---> Running in ad378d05aa6c Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml openssl' Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: at binutils binutils-common binutils-x86-64-linux-gnu bsdmainutils build-essential ca-certificates cpp cpp-7 curl dctrl-tools diffstat distro-info-data docutils-common dput fakeroot g++ g++-7 gcc gcc-7 gcc-7-base gettext gettext-base git git-man groff-base intltool-debian iso-codes krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libapt-inst2.0 libapt-pkg-perl libarchive-zip-perl libasan4 libatomic1 libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libbinutils libbsd0 libc-dev-bin libc6-dev libcc1-0 libcgi-fast-perl libcgi-pm-perl libcilkrts5 libclass-accessor-perl libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl libcroco3 libcurl3-gnutls libcurl4 libdata-dump-perl libdata-optlist-perl libdevel-callchecker-perl libdevel-globaldestruction-perl libdigest-hmac-perl libdistro-info-perl libdpkg-perl libdynaloader-functions-perl libedit2 libemail-valid-perl libencode-locale-perl liberror-perl libexporter-tiny-perl libfakeroot libfcgi-perl libfile-basedir-perl libfile-chdir-perl libfile-fcntllock-perl libfile-homedir-perl libfile-listing-perl libfile-which-perl libfont-afm-perl libfreetype6 libgcc-7-dev libgdbm-compat4 libgdbm5 libgetopt-long-descriptive-perl libgit-wrapper-perl libglib2.0-0 libglib2.0-data libgomp1 libgpgme11 libgssapi-krb5-2 libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libicu60 libimport-into-perl libio-html-perl libio-pty-perl libio-socket-inet6-perl libio-socket-ssl-perl libio-string-perl libio-stringy-perl libipc-run-perl libipc-system-simple-perl libisl19 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 liblist-compare-perl liblist-moreutils-perl liblocale-gettext-perl liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libmodule-implementation-perl libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libmpx2 libnamespace-clean-perl libnet-dns-perl libnet-domain-tld-perl libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnghttp2-14 libnumber-compare-perl libnumber-range-perl libpackage-stash-perl libpackage-stash-xs-perl libpaper-utils libpaper1 libparams-classify-perl libparams-util-perl libparams-validate-perl libparse-debianchangelog-perl libpath-iterator-rule-perl libpath-tiny-perl libperl5.26 libperlio-gzip-perl libpipeline1 libpng16-16 libpod-constants-perl libpsl5 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libquadmath0 libregexp-pattern-license-perl librole-tiny-perl librtmp1 libsocket6-perl libsort-key-perl libsort-versions-perl libssl1.0.0 libstdc++-7-dev libstrictures-perl libstring-copyright-perl libstring-escape-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl libtext-glob-perl libtext-levenshtein-perl libtiff5 libtimedate-perl libtry-tiny-perl libtsan0 libubsan0 libunicode-utf8-perl libunwind8 liburi-perl libvariable-magic-perl libwebp6 libwebpdemux2 libwebpmux3 libwww-perl libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxml-libxml-perl libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-simple-perl libxml2 libxmuu1 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian linux-libc-dev lsb-release make man-db manpages manpages-dev multiarch-support netbase openssh-client patch patchutils perl perl-modules-5.26 perl-openssl-defaults publicsuffix python python-apt-common python-minimal python2.7 python2.7-minimal python3-certifi python3-chardet python3-dateutil python3-debian python3-distutils python3-docutils python3-gpg python3-idna python3-lib2to3 python3-magic python3-olefile python3-pil python3-pkg-resources python3-pygments python3-pyparsing python3-requests python3-roman python3-rospkg-modules python3-setuptools python3-six python3-unidiff python3-urllib3 python3-xdg sgml-base shared-mime-info strace t1utils tzdata ucf unzip wdiff xauth xdg-user-dirs xml-core Suggested packages: default-mta | mail-transport-agent binutils-doc wamerican | wordlist whois vacation cpp-doc gcc-7-locales debtags adequate autopkgtest bls-standalone bsd-mailx | mailx check-all-the-things cvs-buildpackage devscripts-el diffoscope disorderfs dose-extra duck faketime gnuplot how-can-i-help libfile-desktopentry-perl libnet-smtps-perl libterm-size-perl libyaml-syck-perl mozilla-devscripts mutt piuparts postgresql-client quilt ratt reprotest svn-buildpackage w3m debian-keyring equivs libsoap-lite-perl python3-paramiko mini-dinstall rsync g++-multilib g++-7-multilib gcc-7-doc libstdc++6-7-dbg gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg gettext-doc autopoint libasprintf-dev libgettextpo-dev git-daemon-run | git-daemon-sysvinit git-doc git-el git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn groff isoquery libgssapi-perl glibc-doc bzr gdbm-l10n krb5-doc krb5-user liblcms2-utils libcrypt-ssleay-perl libscalar-number-perl libhtml-template-perl libstdc++-7-doc libbareword-filehandles-perl libindirect-perl libmultidimensional-perl libauthen-ntlm-perl bash-completion binutils-multiarch libtext-template-perl lsb make-doc apparmor www-browser keychain libpam-ssh monkeysphere ssh-askpass ed diffutils-doc perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl python-doc python-tk python2.7-doc binfmt-support python3-apt-dbg python-apt-doc docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french texlive-latex-base texlive-latex-recommended python-pil-doc python3-pil-dbg ttf-bitstream-vera python-pyparsing-doc python3-cryptography python3-openssl python3-socks python-setuptools-doc sgml-base-doc zip wdiff-doc debhelper The following NEW packages will be installed: at binutils binutils-common binutils-x86-64-linux-gnu bsdmainutils build-essential ca-certificates cpp cpp-7 curl dctrl-tools devscripts diffstat distro-info-data docutils-common dpkg-dev dput fakeroot g++ g++-7 gcc gcc-7 gcc-7-base gettext gettext-base git git-man groff-base intltool-debian iso-codes krb5-locales less libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libapt-inst2.0 libapt-pkg-perl libarchive-zip-perl libasan4 libatomic1 libauthen-sasl-perl libb-hooks-endofscope-perl libb-hooks-op-check-perl libbinutils libbsd0 libc-dev-bin libc6-dev libcc1-0 libcgi-fast-perl libcgi-pm-perl libcilkrts5 libclass-accessor-perl libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl libcroco3 libcurl3-gnutls libcurl4 libdata-dump-perl libdata-optlist-perl libdevel-callchecker-perl libdevel-globaldestruction-perl libdigest-hmac-perl libdistro-info-perl libdpkg-perl libdynaloader-functions-perl libedit2 libemail-valid-perl libencode-locale-perl liberror-perl libexporter-tiny-perl libfakeroot libfcgi-perl libfile-basedir-perl libfile-chdir-perl libfile-fcntllock-perl libfile-homedir-perl libfile-listing-perl libfile-which-perl libfont-afm-perl libfreetype6 libgcc-7-dev libgdbm-compat4 libgdbm5 libgetopt-long-descriptive-perl libgit-wrapper-perl libglib2.0-0 libglib2.0-data libgomp1 libgpgme11 libgssapi-krb5-2 libhtml-form-perl libhtml-format-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-daemon-perl libhttp-date-perl libhttp-message-perl libhttp-negotiate-perl libicu60 libimport-into-perl libio-html-perl libio-pty-perl libio-socket-inet6-perl libio-socket-ssl-perl libio-string-perl libio-stringy-perl libipc-run-perl libipc-system-simple-perl libisl19 libitm1 libjbig0 libjpeg-turbo8 libjpeg8 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 liblcms2-2 liblist-compare-perl liblist-moreutils-perl liblocale-gettext-perl liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmailtools-perl libmodule-implementation-perl libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libmpx2 libnamespace-clean-perl libnet-dns-perl libnet-domain-tld-perl libnet-http-perl libnet-ip-perl libnet-smtp-ssl-perl libnet-ssleay-perl libnghttp2-14 libnumber-compare-perl libnumber-range-perl libpackage-stash-perl libpackage-stash-xs-perl libpaper-utils libpaper1 libparams-classify-perl libparams-util-perl libparams-validate-perl libparse-debianchangelog-perl libpath-iterator-rule-perl libpath-tiny-perl libperl5.26 libperlio-gzip-perl libpipeline1 libpng16-16 libpod-constants-perl libpsl5 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib libquadmath0 libregexp-pattern-license-perl librole-tiny-perl librtmp1 libsocket6-perl libsort-key-perl libsort-versions-perl libssl1.0.0 libstdc++-7-dev libstrictures-perl libstring-copyright-perl libstring-escape-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl libsub-name-perl libsub-quote-perl libtext-glob-perl libtext-levenshtein-perl libtiff5 libtimedate-perl libtry-tiny-perl libtsan0 libubsan0 libunicode-utf8-perl libunwind8 liburi-perl libvariable-magic-perl libwebp6 libwebpdemux2 libwebpmux3 libwww-perl libwww-robotrules-perl libx11-6 libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxml-libxml-perl libxml-namespacesupport-perl libxml-parser-perl libxml-sax-base-perl libxml-sax-expat-perl libxml-sax-perl libxml-simple-perl libxml2 libxmuu1 libyaml-0-2 libyaml-libyaml-perl licensecheck lintian linux-libc-dev lsb-release make man-db manpages manpages-dev multiarch-support netbase openssh-client openssl patch patchutils perl perl-modules-5.26 perl-openssl-defaults publicsuffix python python-apt-common python-minimal python2.7 python2.7-minimal python3-apt python3-catkin-pkg-modules python3-certifi python3-chardet python3-dateutil python3-debian python3-distutils python3-docutils python3-empy python3-gpg python3-idna python3-lib2to3 python3-magic python3-olefile python3-pil python3-pkg-resources python3-pygments python3-pyparsing python3-requests python3-roman python3-rosdistro-modules python3-rospkg-modules python3-setuptools python3-six python3-unidiff python3-urllib3 python3-xdg python3-yaml sgml-base shared-mime-info strace t1utils tzdata ucf unzip wdiff xauth xdg-user-dirs xml-core 0 upgraded, 276 newly installed, 0 to remove and 4 not upgraded. Need to get 93.5 MB of archives. After this operation, 404 MB of additional disk space will be used. Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-catkin-pkg-modules all 0.4.20-1 [42.0 kB] Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-rospkg-modules all 1.2.6-1 [23.9 kB] Get:3 http://10.210.9.154/ubuntu/building bionic/main amd64 python3-rosdistro-modules all 0.8.2-1 [31.5 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 multiarch-support amd64 2.27-3ubuntu1 [6,916 B] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxau6 amd64 1:1.0.8-1 [8,376 B] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.2 [113 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.2 [569 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.3 [110 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.3 [2,763 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6,084 B] Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.3 [3,527 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.3 [201 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04ubuntu1 [335 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04ubuntu1 [1,294 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04ubuntu1 [1,915 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04ubuntu1 [248 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.6 [614 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates all 20190110~18.04.1 [146 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 distro-info-data all 0.37ubuntu0.7 [4,676 B] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 less amd64 487-0.1 [112 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapt-inst2.0 amd64 1.6.12ubuntu0.1 [54.4 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.6 [1,171 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.6 [4,540 B] Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu60 amd64 60.2-3ubuntu3.1 [8,054 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.3 [663 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-0-2 amd64 0.1.7-2ubuntu3 [47.2 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 lsb-release all 9.20170808ubuntu1 [11.0 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-yaml amd64 3.12-1build2 [109 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2020a-0ubuntu0.18.04 [190 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 iso-codes all 3.79-1 [2,565 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.1 [13.5 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB] Get:52 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.1 [30.9 kB] Get:53 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.1 [85.6 kB] Get:54 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B] Get:55 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.1 [279 kB] Get:56 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.1 [122 kB] Get:57 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB] Get:58 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] Get:59 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl1.0.0 amd64 1.0.2n-1ubuntu5.3 [1,088 kB] Get:60 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxmuu1 amd64 2:1.1.2-2 [9,674 B] Get:61 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages all 4.15-1 [1,234 kB] Get:62 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssh-client amd64 1:7.6p1-4ubuntu0.3 [614 kB] Get:63 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] Get:64 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-apt-common all 1.6.5ubuntu0.3 [16.8 kB] Get:65 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-apt amd64 1.6.5ubuntu0.3 [149 kB] Get:66 http://archive.ubuntu.com/ubuntu bionic/main amd64 libunwind8 amd64 1.2.1-8 [47.5 kB] Get:67 http://archive.ubuntu.com/ubuntu bionic/main amd64 strace amd64 4.21-1ubuntu1 [333 kB] Get:68 http://archive.ubuntu.com/ubuntu bionic/main amd64 xauth amd64 1:1.0.10-1 [24.6 kB] Get:69 http://archive.ubuntu.com/ubuntu bionic/main amd64 at amd64 3.1.20-3.1ubuntu2 [39.5 kB] Get:70 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.3 [196 kB] Get:71 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.3 [488 kB] Get:72 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.3 [1,839 kB] Get:73 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.3 [3,388 B] Get:74 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc-dev-bin amd64 2.27-3ubuntu1 [71.8 kB] Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-101.102 [994 kB] Get:76 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc6-dev amd64 2.27-3ubuntu1 [2,587 kB] Get:77 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.5.0-3ubuntu1~18.04 [18.3 kB] Get:78 http://archive.ubuntu.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB] Get:79 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr6 amd64 4.0.1-1 [243 kB] Get:80 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB] Get:81 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.5.0-3ubuntu1~18.04 [8,591 kB] Get:82 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB] Get:83 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.4.0-1ubuntu1~18.04 [39.4 kB] Get:84 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.4.0-1ubuntu1~18.04 [76.5 kB] Get:85 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.4.0-1ubuntu1~18.04 [27.9 kB] Get:86 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.4.0-1ubuntu1~18.04 [9,192 B] Get:87 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.5.0-3ubuntu1~18.04 [358 kB] Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.4.0-1ubuntu1~18.04 [133 kB] Get:89 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.4.0-1ubuntu1~18.04 [288 kB] Get:90 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.5.0-3ubuntu1~18.04 [126 kB] Get:91 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.5.0-3ubuntu1~18.04 [42.5 kB] Get:92 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.4.0-1ubuntu1~18.04 [11.6 kB] Get:93 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.4.0-1ubuntu1~18.04 [134 kB] Get:94 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.5.0-3ubuntu1~18.04 [2,378 kB] Get:95 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.5.0-3ubuntu1~18.04 [9,381 kB] Get:96 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5,184 B] Get:97 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.5.0-3ubuntu1~18.04 [1,471 kB] Get:98 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.5.0-3ubuntu1~18.04 [9,697 kB] Get:99 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1,568 B] Get:100 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB] Get:101 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB] Get:102 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] Get:103 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB] Get:104 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4,758 B] Get:105 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] Get:106 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] Get:107 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.8 [214 kB] Get:108 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.8 [159 kB] Get:109 http://archive.ubuntu.com/ubuntu bionic/main amd64 dctrl-tools amd64 2.24-2build1 [60.9 kB] Get:110 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-which-perl all 1.21-1 [11.8 kB] Get:111 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-homedir-perl all 1.002-1 [37.1 kB] Get:112 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 devscripts amd64 2.17.12ubuntu1.1 [870 kB] Get:113 http://archive.ubuntu.com/ubuntu bionic/main amd64 diffstat amd64 1.61-1build1 [24.1 kB] Get:114 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] Get:115 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] Get:116 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pkg-resources all 39.0.1-2 [98.8 kB] Get:117 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-chardet all 3.0.4-1 [80.3 kB] Get:118 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-six all 1.11.0-2 [11.4 kB] Get:119 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-debian all 0.1.32 [65.4 kB] Get:120 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgpgme11 amd64 1.10.0-1ubuntu2 [111 kB] Get:121 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-gpg amd64 1.10.0-1ubuntu2 [150 kB] Get:122 http://archive.ubuntu.com/ubuntu bionic/main amd64 dput all 1.0.1ubuntu1 [42.7 kB] Get:123 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB] Get:124 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB] Get:125 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] Get:126 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB] Get:127 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl3-gnutls amd64 7.58.0-2ubuntu3.8 [213 kB] Get:128 http://archive.ubuntu.com/ubuntu bionic/main amd64 liberror-perl all 0.17025-1 [22.8 kB] Get:129 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git-man all 1:2.17.1-1ubuntu0.7 [804 kB] Get:130 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 git amd64 1:2.17.1-1ubuntu0.7 [3,915 kB] Get:131 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] Get:132 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] Get:133 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB] Get:134 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] Get:135 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapt-pkg-perl amd64 0.1.33build1 [68.0 kB] Get:136 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB] Get:137 http://archive.ubuntu.com/ubuntu bionic/main amd64 libb-hooks-op-check-perl amd64 0.22-1 [10.1 kB] Get:138 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdynaloader-functions-perl all 0.003-1 [11.9 kB] Get:139 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdevel-callchecker-perl amd64 0.007-2build1 [14.1 kB] Get:140 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-classify-perl amd64 0.015-1 [21.2 kB] Get:141 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmodule-runtime-perl all 0.016-1 [16.2 kB] Get:142 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtry-tiny-perl all 0.30-1 [20.5 kB] Get:143 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmodule-implementation-perl all 0.09-1 [12.2 kB] Get:144 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-exporter-progressive-perl all 0.001013-1 [6,784 B] Get:145 http://archive.ubuntu.com/ubuntu bionic/main amd64 libvariable-magic-perl amd64 0.62-1 [34.5 kB] Get:146 http://archive.ubuntu.com/ubuntu bionic/main amd64 libb-hooks-endofscope-perl all 0.21-1 [14.7 kB] Get:147 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tagset-perl all 3.20-3 [12.1 kB] Get:148 http://archive.ubuntu.com/ubuntu bionic/main amd64 liburi-perl all 1.73-1 [77.2 kB] Get:149 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-parser-perl amd64 3.72-3build1 [85.9 kB] Get:150 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcgi-pm-perl all 4.38-1 [185 kB] Get:151 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfcgi-perl amd64 0.78-2build1 [32.8 kB] Get:152 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcgi-fast-perl all 1:2.13-1 [9,940 B] Get:153 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-name-perl amd64 0.21-1build1 [11.6 kB] Get:154 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-accessor-perl all 0.51-1 [21.2 kB] Get:155 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-method-modifiers-perl all 2.12-1 [15.7 kB] Get:156 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclass-xsaccessor-perl amd64 1.19-2build8 [32.8 kB] Get:157 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclone-perl amd64 0.39-1 [10.4 kB] Get:158 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdata-dump-perl all 1.23-1 [27.0 kB] Get:159 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-util-perl amd64 1.07-3build3 [19.6 kB] Get:160 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-install-perl all 0.928-1 [10.5 kB] Get:161 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdata-optlist-perl all 0.110-1 [9,956 B] Get:162 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdevel-globaldestruction-perl all 0.14-1 [6,752 B] Get:163 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdigest-hmac-perl all 1.03+dfsg-1 [12.1 kB] Get:164 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdistro-info-perl all 0.18ubuntu0.18.04.1 [4,892 B] Get:165 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] Get:166 http://archive.ubuntu.com/ubuntu bionic/main amd64 perl-openssl-defaults amd64 3build1 [7,012 B] Get:167 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libnet-ssleay-perl amd64 1.84-1ubuntu0.2 [283 kB] Get:168 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libio-socket-ssl-perl all 2.060-3~ubuntu18.04.1 [173 kB] Get:169 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-smtp-ssl-perl all 1.04-1 [5,948 B] Get:170 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmailtools-perl all 2.18-1 [74.0 kB] Get:171 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsocket6-perl amd64 0.27-1build2 [23.0 kB] Get:172 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-socket-inet6-perl all 2.72-2 [13.8 kB] Get:173 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-ip-perl all 1.26-1 [31.5 kB] Get:174 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-dns-perl all 1.10-2 [335 kB] Get:175 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-domain-tld-perl all 1.75-1 [29.1 kB] Get:176 http://archive.ubuntu.com/ubuntu bionic/main amd64 libemail-valid-perl all 1.202-1 [16.3 kB] Get:177 http://archive.ubuntu.com/ubuntu bionic/main amd64 libencode-locale-perl all 1.05-1 [12.3 kB] Get:178 http://archive.ubuntu.com/ubuntu bionic/main amd64 libexporter-tiny-perl all 1.000000-2 [34.6 kB] Get:179 http://archive.ubuntu.com/ubuntu bionic/main amd64 libipc-system-simple-perl all 1.25-4 [22.5 kB] Get:180 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-basedir-perl all 0.07-1 [16.9 kB] Get:181 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-chdir-perl all 0.1008-1 [11.7 kB] Get:182 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB] Get:183 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-date-perl all 6.02-1 [10.4 kB] Get:184 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-listing-perl all 6.04-1 [9,774 B] Get:185 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfont-afm-perl all 1.20-2 [13.2 kB] Get:186 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2 [335 kB] Get:187 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-stringy-perl all 2.111-2 [60.6 kB] Get:188 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparams-validate-perl amd64 1.29-1 [52.3 kB] Get:189 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-exporter-perl all 0.987-1 [44.9 kB] Get:190 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgetopt-long-descriptive-perl all 0.102-1 [24.4 kB] Get:191 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsort-versions-perl all 1.62-1 [9,294 B] Get:192 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgit-wrapper-perl all 0.047-1 [29.6 kB] Get:193 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-html-perl all 1.001-1 [14.9 kB] Get:194 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-mediatypes-perl all 6.02-1 [21.7 kB] Get:195 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-message-perl all 6.14-1 [72.1 kB] Get:196 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-form-perl all 6.03-1 [23.5 kB] Get:197 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-tree-perl all 5.07-1 [200 kB] Get:198 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhtml-format-perl all 2.12-1 [41.3 kB] Get:199 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-cookies-perl all 6.04-1 [17.2 kB] Get:200 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-daemon-perl all 6.01-1 [17.0 kB] Get:201 http://archive.ubuntu.com/ubuntu bionic/main amd64 libhttp-negotiate-perl all 6.00-2 [13.4 kB] Get:202 http://archive.ubuntu.com/ubuntu bionic/main amd64 libimport-into-perl all 1.002005-1 [11.0 kB] Get:203 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-pty-perl amd64 1:1.08-1.1build4 [30.1 kB] Get:204 http://archive.ubuntu.com/ubuntu bionic/main amd64 libio-string-perl all 1.08-3 [11.1 kB] Get:205 http://archive.ubuntu.com/ubuntu bionic/main amd64 libipc-run-perl all 0.96-1 [89.9 kB] Get:206 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] Get:207 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB] Get:208 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblist-compare-perl all 0.53-1 [65.6 kB] Get:209 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblist-moreutils-perl amd64 0.416-1build3 [55.5 kB] Get:210 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnet-http-perl all 6.17-1 [22.7 kB] Get:211 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwww-robotrules-perl all 6.01-1 [14.1 kB] Get:212 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwww-perl all 6.31-1ubuntu0.1 [137 kB] Get:213 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblwp-protocol-https-perl all 6.07-2 [8,284 B] Get:214 http://archive.ubuntu.com/ubuntu bionic/main amd64 librole-tiny-perl all 2.000006-1 [15.9 kB] Get:215 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstrictures-perl all 2.000003-1 [16.1 kB] Get:216 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-quote-perl all 2.005000-1 [17.0 kB] Get:217 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmoo-perl all 2.003004-1 [45.5 kB] Get:218 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpackage-stash-perl all 0.37-1 [18.3 kB] Get:219 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsub-identify-perl amd64 0.14-1 [10.5 kB] Get:220 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnamespace-clean-perl all 0.27-1 [13.6 kB] Get:221 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnumber-compare-perl all 0.03-1 [7,318 B] Get:222 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnumber-range-perl all 0.12-1 [8,556 B] Get:223 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpackage-stash-xs-perl amd64 0.28-3build2 [16.4 kB] Get:224 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] Get:225 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] Get:226 http://archive.ubuntu.com/ubuntu bionic/main amd64 libparse-debianchangelog-perl all 1.2.0-12 [49.5 kB] Get:227 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtext-glob-perl all 0.10-1 [7,554 B] Get:228 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpath-iterator-rule-perl all 1.009-1 [49.1 kB] Get:229 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpath-tiny-perl all 0.104-1 [55.3 kB] Get:230 http://archive.ubuntu.com/ubuntu bionic/main amd64 libperlio-gzip-perl amd64 0.19-1build3 [14.4 kB] Get:231 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpod-constants-perl all 0.19-1 [16.0 kB] Get:232 http://archive.ubuntu.com/ubuntu bionic/main amd64 libregexp-pattern-license-perl all 3.0.31-3 [14.7 kB] Get:233 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsort-key-perl amd64 1.33-2 [35.0 kB] Get:234 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstring-copyright-perl all 0.003005-1 [10.1 kB] Get:235 http://archive.ubuntu.com/ubuntu bionic/main amd64 libstring-escape-perl all 2010.002-2 [17.6 kB] Get:236 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtext-levenshtein-perl all 0.13-1 [9,612 B] Get:237 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] Get:238 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB] Get:239 http://archive.ubuntu.com/ubuntu bionic/main amd64 libunicode-utf8-perl amd64 0.60-1build4 [17.9 kB] Get:240 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] Get:241 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B] Get:242 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] Get:243 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-namespacesupport-perl all 1.12-1 [13.2 kB] Get:244 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-base-perl all 1.09-1 [18.8 kB] Get:245 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-perl all 0.99+dfsg-2ubuntu1 [64.6 kB] Get:246 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-libxml-perl amd64 2.0128+dfsg-5 [316 kB] Get:247 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-parser-perl amd64 2.44-2build3 [199 kB] Get:248 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-sax-expat-perl all 0.40-2 [11.5 kB] Get:249 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxml-simple-perl all 2.24-1 [63.6 kB] Get:250 http://archive.ubuntu.com/ubuntu bionic/main amd64 libyaml-libyaml-perl amd64 0.69+repack-1 [26.4 kB] Get:251 http://archive.ubuntu.com/ubuntu bionic/main amd64 licensecheck all 3.0.31-2 [22.0 kB] Get:252 http://archive.ubuntu.com/ubuntu bionic/main amd64 patchutils amd64 0.3.4-2 [71.1 kB] Get:253 http://archive.ubuntu.com/ubuntu bionic/main amd64 t1utils amd64 1.41-2 [56.0 kB] Get:254 http://archive.ubuntu.com/ubuntu bionic/main amd64 lintian all 2.5.81ubuntu1 [847 kB] Get:255 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2,217 kB] Get:256 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-dateutil all 2.6.1-1 [52.3 kB] Get:257 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-roman all 2.0.0-3 [8,624 B] Get:258 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-docutils all 0.14+dfsg-3 [363 kB] Get:259 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pyparsing all 2.2.0+dfsg1-2 [52.2 kB] Get:260 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-certifi all 2018.1.18-2 [144 kB] Get:261 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB] Get:262 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB] Get:263 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python3-empy all 3.3.2-1build1 [37.3 kB] Get:264 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-idna all 2.6-1 [32.5 kB] Get:265 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-olefile all 0.45.1-1 [33.3 kB] Get:266 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-pil amd64 5.1.0-1ubuntu0.2 [329 kB] Get:267 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-pygments all 2.2.0+dfsg-1 [574 kB] Get:268 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-urllib3 all 1.22-1ubuntu0.18.04.1 [86.0 kB] Get:269 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-requests all 2.18.4-2ubuntu0.1 [58.3 kB] Get:270 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-setuptools all 39.0.1-2 [248 kB] Get:271 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-unidiff all 0.5.4-1 [7,140 B] Get:272 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-xdg all 0.25-4ubuntu1 [31.4 kB] Get:273 http://archive.ubuntu.com/ubuntu bionic/main amd64 unzip amd64 6.0-21ubuntu1 [167 kB] Get:274 http://archive.ubuntu.com/ubuntu bionic/main amd64 wdiff amd64 1.2.2-2 [29.6 kB] Get:275 http://archive.ubuntu.com/ubuntu bionic/main amd64 libauthen-sasl-perl all 2.1600-1 [48.7 kB] Get:276 http://archive.ubuntu.com/ubuntu bionic/main amd64 python3-magic all 2:0.4.15-1 [9,280 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 93.5 MB in 2s (38.4 MB/s) Selecting previously unselected package liblocale-gettext-perl. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5787 files and directories currently installed.) Preparing to unpack .../liblocale-gettext-perl_1.07-3build2_amd64.deb ... Unpacking liblocale-gettext-perl (1.07-3build2) ... Selecting previously unselected package multiarch-support. Preparing to unpack .../multiarch-support_2.27-3ubuntu1_amd64.deb ... Unpacking multiarch-support (2.27-3ubuntu1) ... Setting up multiarch-support (2.27-3ubuntu1) ... Selecting previously unselected package libxau6:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5804 files and directories currently installed.) Preparing to unpack .../00-libxau6_1%3a1.0.8-1_amd64.deb ... Unpacking libxau6:amd64 (1:1.0.8-1) ... Selecting previously unselected package libbsd0:amd64. Preparing to unpack .../01-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Selecting previously unselected package libxdmcp6:amd64. Preparing to unpack .../02-libxdmcp6_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... Selecting previously unselected package libxcb1:amd64. Preparing to unpack .../03-libxcb1_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libx11-data. Preparing to unpack .../04-libx11-data_2%3a1.6.4-3ubuntu0.2_all.deb ... Unpacking libx11-data (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libx11-6:amd64. Preparing to unpack .../05-libx11-6_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../06-libxext6_2%3a1.3.3-1_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.3-1) ... Selecting previously unselected package bsdmainutils. Preparing to unpack .../07-bsdmainutils_11.1.2ubuntu1_amd64.deb ... Unpacking bsdmainutils (11.1.2ubuntu1) ... Selecting previously unselected package groff-base. Preparing to unpack .../08-groff-base_1.22.3-10_amd64.deb ... Unpacking groff-base (1.22.3-10) ... Selecting previously unselected package libgdbm5:amd64. Preparing to unpack .../09-libgdbm5_1.14.1-6_amd64.deb ... Unpacking libgdbm5:amd64 (1.14.1-6) ... Selecting previously unselected package libpipeline1:amd64. Preparing to unpack .../10-libpipeline1_1.5.0-1_amd64.deb ... Unpacking libpipeline1:amd64 (1.5.0-1) ... Selecting previously unselected package man-db. Preparing to unpack .../11-man-db_2.8.3-2ubuntu0.1_amd64.deb ... Unpacking man-db (2.8.3-2ubuntu0.1) ... Selecting previously unselected package libjpeg-turbo8:amd64. Preparing to unpack .../12-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.3_amd64.deb ... Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Selecting previously unselected package perl-modules-5.26. Preparing to unpack .../13-perl-modules-5.26_5.26.1-6ubuntu0.3_all.deb ... Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package libgdbm-compat4:amd64. Preparing to unpack .../14-libgdbm-compat4_1.14.1-6_amd64.deb ... Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... Selecting previously unselected package libperl5.26:amd64. Preparing to unpack .../15-libperl5.26_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package perl. Preparing to unpack .../16-perl_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking perl (5.26.1-6ubuntu0.3) ... Selecting previously unselected package libpython2.7-minimal:amd64. Preparing to unpack .../17-libpython2.7-minimal_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../18-python2.7-minimal_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking python2.7-minimal (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package python-minimal. Preparing to unpack .../19-python-minimal_2.7.15~rc1-1_amd64.deb ... Unpacking python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package libpython2.7-stdlib:amd64. Preparing to unpack .../20-libpython2.7-stdlib_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package python2.7. Preparing to unpack .../21-python2.7_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking python2.7 (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package libpython-stdlib:amd64. Preparing to unpack .../22-libpython-stdlib_2.7.15~rc1-1_amd64.deb ... Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1) ... Setting up python2.7-minimal (2.7.17-1~18.04ubuntu1) ... Setting up python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package python. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9303 files and directories currently installed.) Preparing to unpack .../000-python_2.7.15~rc1-1_amd64.deb ... Unpacking python (2.7.15~rc1-1) ... Selecting previously unselected package sgml-base. Preparing to unpack .../001-sgml-base_1.29_all.deb ... Unpacking sgml-base (1.29) ... Selecting previously unselected package openssl. Preparing to unpack .../002-openssl_1.1.1-1ubuntu2.1~18.04.6_amd64.deb ... Unpacking openssl (1.1.1-1ubuntu2.1~18.04.6) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../003-ca-certificates_20190110~18.04.1_all.deb ... Unpacking ca-certificates (20190110~18.04.1) ... Selecting previously unselected package distro-info-data. Preparing to unpack .../004-distro-info-data_0.37ubuntu0.7_all.deb ... Unpacking distro-info-data (0.37ubuntu0.7) ... Selecting previously unselected package less. Preparing to unpack .../005-less_487-0.1_amd64.deb ... Unpacking less (487-0.1) ... Selecting previously unselected package libapt-inst2.0:amd64. Preparing to unpack .../006-libapt-inst2.0_1.6.12ubuntu0.1_amd64.deb ... Unpacking libapt-inst2.0:amd64 (1.6.12ubuntu0.1) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../007-libglib2.0-0_2.56.4-0ubuntu0.18.04.6_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../008-libglib2.0-data_2.56.4-0ubuntu0.18.04.6_all.deb ... Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libicu60:amd64. Preparing to unpack .../009-libicu60_60.2-3ubuntu3.1_amd64.deb ... Unpacking libicu60:amd64 (60.2-3ubuntu3.1) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../010-libxml2_2.9.4+dfsg1-6.1ubuntu1.3_amd64.deb ... Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Selecting previously unselected package libyaml-0-2:amd64. Preparing to unpack .../011-libyaml-0-2_0.1.7-2ubuntu3_amd64.deb ... Unpacking libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Selecting previously unselected package lsb-release. Preparing to unpack .../012-lsb-release_9.20170808ubuntu1_all.deb ... Unpacking lsb-release (9.20170808ubuntu1) ... Selecting previously unselected package netbase. Preparing to unpack .../013-netbase_5.4_all.deb ... Unpacking netbase (5.4) ... Selecting previously unselected package python3-yaml. Preparing to unpack .../014-python3-yaml_3.12-1build2_amd64.deb ... Unpacking python3-yaml (3.12-1build2) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../015-shared-mime-info_1.9-2_amd64.deb ... Unpacking shared-mime-info (1.9-2) ... Selecting previously unselected package tzdata. Preparing to unpack .../016-tzdata_2020a-0ubuntu0.18.04_all.deb ... Unpacking tzdata (2020a-0ubuntu0.18.04) ... Selecting previously unselected package ucf. Preparing to unpack .../017-ucf_3.0038_all.deb ... Moving old data out of the way Unpacking ucf (3.0038) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../018-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ... Unpacking xdg-user-dirs (0.17-1ubuntu1) ... Selecting previously unselected package gettext-base. Preparing to unpack .../019-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package iso-codes. Preparing to unpack .../020-iso-codes_3.79-1_all.deb ... Unpacking iso-codes (3.79-1) ... Selecting previously unselected package krb5-locales. Preparing to unpack .../021-krb5-locales_1.16-2ubuntu0.1_all.deb ... Unpacking krb5-locales (1.16-2ubuntu0.1) ... Selecting previously unselected package libedit2:amd64. Preparing to unpack .../022-libedit2_3.1-20170329-1_amd64.deb ... Unpacking libedit2:amd64 (3.1-20170329-1) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../023-libkrb5support0_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../024-libk5crypto3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../025-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../026-libkrb5-3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../027-libgssapi-krb5-2_1.16-2ubuntu0.1_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../028-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ... Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../029-libpsl5_0.19.1-5build1_amd64.deb ... Unpacking libpsl5:amd64 (0.19.1-5build1) ... Selecting previously unselected package libssl1.0.0:amd64. Preparing to unpack .../030-libssl1.0.0_1.0.2n-1ubuntu5.3_amd64.deb ... Unpacking libssl1.0.0:amd64 (1.0.2n-1ubuntu5.3) ... Selecting previously unselected package libxmuu1:amd64. Preparing to unpack .../031-libxmuu1_2%3a1.1.2-2_amd64.deb ... Unpacking libxmuu1:amd64 (2:1.1.2-2) ... Selecting previously unselected package manpages. Preparing to unpack .../032-manpages_4.15-1_all.deb ... Unpacking manpages (4.15-1) ... Selecting previously unselected package openssh-client. Preparing to unpack .../033-openssh-client_1%3a7.6p1-4ubuntu0.3_amd64.deb ... Unpacking openssh-client (1:7.6p1-4ubuntu0.3) ... Selecting previously unselected package publicsuffix. Preparing to unpack .../034-publicsuffix_20180223.1310-1_all.deb ... Unpacking publicsuffix (20180223.1310-1) ... Selecting previously unselected package python-apt-common. Preparing to unpack .../035-python-apt-common_1.6.5ubuntu0.3_all.deb ... Unpacking python-apt-common (1.6.5ubuntu0.3) ... Selecting previously unselected package python3-apt. Preparing to unpack .../036-python3-apt_1.6.5ubuntu0.3_amd64.deb ... Unpacking python3-apt (1.6.5ubuntu0.3) ... Selecting previously unselected package libunwind8:amd64. Preparing to unpack .../037-libunwind8_1.2.1-8_amd64.deb ... Unpacking libunwind8:amd64 (1.2.1-8) ... Selecting previously unselected package strace. Preparing to unpack .../038-strace_4.21-1ubuntu1_amd64.deb ... Unpacking strace (4.21-1ubuntu1) ... Selecting previously unselected package xauth. Preparing to unpack .../039-xauth_1%3a1.0.10-1_amd64.deb ... Unpacking xauth (1:1.0.10-1) ... Selecting previously unselected package at. Preparing to unpack .../040-at_3.1.20-3.1ubuntu2_amd64.deb ... Unpacking at (3.1.20-3.1ubuntu2) ... Selecting previously unselected package binutils-common:amd64. Preparing to unpack .../041-binutils-common_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package libbinutils:amd64. Preparing to unpack .../042-libbinutils_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package binutils-x86-64-linux-gnu. Preparing to unpack .../043-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package binutils. Preparing to unpack .../044-binutils_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking binutils (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../045-libc-dev-bin_2.27-3ubuntu1_amd64.deb ... Unpacking libc-dev-bin (2.27-3ubuntu1) ... Selecting previously unselected package linux-libc-dev:amd64. Preparing to unpack .../046-linux-libc-dev_4.15.0-101.102_amd64.deb ... Unpacking linux-libc-dev:amd64 (4.15.0-101.102) ... Selecting previously unselected package libc6-dev:amd64. Preparing to unpack .../047-libc6-dev_2.27-3ubuntu1_amd64.deb ... Unpacking libc6-dev:amd64 (2.27-3ubuntu1) ... Selecting previously unselected package gcc-7-base:amd64. Preparing to unpack .../048-gcc-7-base_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package libisl19:amd64. Preparing to unpack .../049-libisl19_0.19-1_amd64.deb ... Unpacking libisl19:amd64 (0.19-1) ... Selecting previously unselected package libmpfr6:amd64. Preparing to unpack .../050-libmpfr6_4.0.1-1_amd64.deb ... Unpacking libmpfr6:amd64 (4.0.1-1) ... Selecting previously unselected package libmpc3:amd64. Preparing to unpack .../051-libmpc3_1.1.0-1_amd64.deb ... Unpacking libmpc3:amd64 (1.1.0-1) ... Selecting previously unselected package cpp-7. Preparing to unpack .../052-cpp-7_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking cpp-7 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package cpp. Preparing to unpack .../053-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking cpp (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libcc1-0:amd64. Preparing to unpack .../054-libcc1-0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libgomp1:amd64. Preparing to unpack .../055-libgomp1_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libitm1:amd64. Preparing to unpack .../056-libitm1_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libatomic1:amd64. Preparing to unpack .../057-libatomic1_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libasan4:amd64. Preparing to unpack .../058-libasan4_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package liblsan0:amd64. Preparing to unpack .../059-liblsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libtsan0:amd64. Preparing to unpack .../060-libtsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libubsan0:amd64. Preparing to unpack .../061-libubsan0_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package libcilkrts5:amd64. Preparing to unpack .../062-libcilkrts5_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package libmpx2:amd64. Preparing to unpack .../063-libmpx2_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../064-libquadmath0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libgcc-7-dev:amd64. Preparing to unpack .../065-libgcc-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package gcc-7. Preparing to unpack .../066-gcc-7_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking gcc-7 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package gcc. Preparing to unpack .../067-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking gcc (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libstdc++-7-dev:amd64. Preparing to unpack .../068-libstdc++-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package g++-7. Preparing to unpack .../069-g++-7_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking g++-7 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package g++. Preparing to unpack .../070-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking g++ (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package make. Preparing to unpack .../071-make_4.1-9.1ubuntu1_amd64.deb ... Unpacking make (4.1-9.1ubuntu1) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../072-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ... Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ... Selecting previously unselected package patch. Preparing to unpack .../073-patch_2.7.6-2ubuntu1.1_amd64.deb ... Unpacking patch (2.7.6-2ubuntu1.1) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../074-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ... Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ... Selecting previously unselected package build-essential. Preparing to unpack .../075-build-essential_12.4ubuntu1_amd64.deb ... Unpacking build-essential (12.4ubuntu1) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../076-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../077-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Selecting previously unselected package libcurl4:amd64. Preparing to unpack .../078-libcurl4_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Selecting previously unselected package curl. Preparing to unpack .../079-curl_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking curl (7.58.0-2ubuntu3.8) ... Selecting previously unselected package dctrl-tools. Preparing to unpack .../080-dctrl-tools_2.24-2build1_amd64.deb ... Unpacking dctrl-tools (2.24-2build1) ... Selecting previously unselected package libfile-which-perl. Preparing to unpack .../081-libfile-which-perl_1.21-1_all.deb ... Unpacking libfile-which-perl (1.21-1) ... Selecting previously unselected package libfile-homedir-perl. Preparing to unpack .../082-libfile-homedir-perl_1.002-1_all.deb ... Unpacking libfile-homedir-perl (1.002-1) ... Selecting previously unselected package devscripts. Preparing to unpack .../083-devscripts_2.17.12ubuntu1.1_amd64.deb ... Unpacking devscripts (2.17.12ubuntu1.1) ... Selecting previously unselected package diffstat. Preparing to unpack .../084-diffstat_1.61-1build1_amd64.deb ... Unpacking diffstat (1.61-1build1) ... Selecting previously unselected package xml-core. Preparing to unpack .../085-xml-core_0.18_all.deb ... Unpacking xml-core (0.18) ... Selecting previously unselected package docutils-common. Preparing to unpack .../086-docutils-common_0.14+dfsg-3_all.deb ... Unpacking docutils-common (0.14+dfsg-3) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../087-python3-pkg-resources_39.0.1-2_all.deb ... Unpacking python3-pkg-resources (39.0.1-2) ... Selecting previously unselected package python3-chardet. Preparing to unpack .../088-python3-chardet_3.0.4-1_all.deb ... Unpacking python3-chardet (3.0.4-1) ... Selecting previously unselected package python3-six. Preparing to unpack .../089-python3-six_1.11.0-2_all.deb ... Unpacking python3-six (1.11.0-2) ... Selecting previously unselected package python3-debian. Preparing to unpack .../090-python3-debian_0.1.32_all.deb ... Unpacking python3-debian (0.1.32) ... Selecting previously unselected package libgpgme11:amd64. Preparing to unpack .../091-libgpgme11_1.10.0-1ubuntu2_amd64.deb ... Unpacking libgpgme11:amd64 (1.10.0-1ubuntu2) ... Selecting previously unselected package python3-gpg. Preparing to unpack .../092-python3-gpg_1.10.0-1ubuntu2_amd64.deb ... Unpacking python3-gpg (1.10.0-1ubuntu2) ... Selecting previously unselected package dput. Preparing to unpack .../093-dput_1.0.1ubuntu1_all.deb ... Unpacking dput (1.0.1ubuntu1) ... Selecting previously unselected package libfakeroot:amd64. Preparing to unpack .../094-libfakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../095-fakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking fakeroot (1.22-2ubuntu1) ... Selecting previously unselected package libcroco3:amd64. Preparing to unpack .../096-libcroco3_0.6.12-2_amd64.deb ... Unpacking libcroco3:amd64 (0.6.12-2) ... Selecting previously unselected package gettext. Preparing to unpack .../097-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package libcurl3-gnutls:amd64. Preparing to unpack .../098-libcurl3-gnutls_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.8) ... Selecting previously unselected package liberror-perl. Preparing to unpack .../099-liberror-perl_0.17025-1_all.deb ... Unpacking liberror-perl (0.17025-1) ... Selecting previously unselected package git-man. Preparing to unpack .../100-git-man_1%3a2.17.1-1ubuntu0.7_all.deb ... Unpacking git-man (1:2.17.1-1ubuntu0.7) ... Selecting previously unselected package git. Preparing to unpack .../101-git_1%3a2.17.1-1ubuntu0.7_amd64.deb ... Unpacking git (1:2.17.1-1ubuntu0.7) ... Selecting previously unselected package intltool-debian. Preparing to unpack .../102-intltool-debian_0.35.0+20060710.4_all.deb ... Unpacking intltool-debian (0.35.0+20060710.4) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../103-libalgorithm-diff-perl_1.19.03-1_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-1) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../104-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-5) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../105-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libapt-pkg-perl. Preparing to unpack .../106-libapt-pkg-perl_0.1.33build1_amd64.deb ... Unpacking libapt-pkg-perl (0.1.33build1) ... Selecting previously unselected package libarchive-zip-perl. Preparing to unpack .../107-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ... Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ... Selecting previously unselected package libb-hooks-op-check-perl. Preparing to unpack .../108-libb-hooks-op-check-perl_0.22-1_amd64.deb ... Unpacking libb-hooks-op-check-perl (0.22-1) ... Selecting previously unselected package libdynaloader-functions-perl. Preparing to unpack .../109-libdynaloader-functions-perl_0.003-1_all.deb ... Unpacking libdynaloader-functions-perl (0.003-1) ... Selecting previously unselected package libdevel-callchecker-perl. Preparing to unpack .../110-libdevel-callchecker-perl_0.007-2build1_amd64.deb ... Unpacking libdevel-callchecker-perl (0.007-2build1) ... Selecting previously unselected package libparams-classify-perl. Preparing to unpack .../111-libparams-classify-perl_0.015-1_amd64.deb ... Unpacking libparams-classify-perl (0.015-1) ... Selecting previously unselected package libmodule-runtime-perl. Preparing to unpack .../112-libmodule-runtime-perl_0.016-1_all.deb ... Unpacking libmodule-runtime-perl (0.016-1) ... Selecting previously unselected package libtry-tiny-perl. Preparing to unpack .../113-libtry-tiny-perl_0.30-1_all.deb ... Unpacking libtry-tiny-perl (0.30-1) ... Selecting previously unselected package libmodule-implementation-perl. Preparing to unpack .../114-libmodule-implementation-perl_0.09-1_all.deb ... Unpacking libmodule-implementation-perl (0.09-1) ... Selecting previously unselected package libsub-exporter-progressive-perl. Preparing to unpack .../115-libsub-exporter-progressive-perl_0.001013-1_all.deb ... Unpacking libsub-exporter-progressive-perl (0.001013-1) ... Selecting previously unselected package libvariable-magic-perl. Preparing to unpack .../116-libvariable-magic-perl_0.62-1_amd64.deb ... Unpacking libvariable-magic-perl (0.62-1) ... Selecting previously unselected package libb-hooks-endofscope-perl. Preparing to unpack .../117-libb-hooks-endofscope-perl_0.21-1_all.deb ... Unpacking libb-hooks-endofscope-perl (0.21-1) ... Selecting previously unselected package libhtml-tagset-perl. Preparing to unpack .../118-libhtml-tagset-perl_3.20-3_all.deb ... Unpacking libhtml-tagset-perl (3.20-3) ... Selecting previously unselected package liburi-perl. Preparing to unpack .../119-liburi-perl_1.73-1_all.deb ... Unpacking liburi-perl (1.73-1) ... Selecting previously unselected package libhtml-parser-perl. Preparing to unpack .../120-libhtml-parser-perl_3.72-3build1_amd64.deb ... Unpacking libhtml-parser-perl (3.72-3build1) ... Selecting previously unselected package libcgi-pm-perl. Preparing to unpack .../121-libcgi-pm-perl_4.38-1_all.deb ... Unpacking libcgi-pm-perl (4.38-1) ... Selecting previously unselected package libfcgi-perl. Preparing to unpack .../122-libfcgi-perl_0.78-2build1_amd64.deb ... Unpacking libfcgi-perl (0.78-2build1) ... Selecting previously unselected package libcgi-fast-perl. Preparing to unpack .../123-libcgi-fast-perl_1%3a2.13-1_all.deb ... Unpacking libcgi-fast-perl (1:2.13-1) ... Selecting previously unselected package libsub-name-perl. Preparing to unpack .../124-libsub-name-perl_0.21-1build1_amd64.deb ... Unpacking libsub-name-perl (0.21-1build1) ... Selecting previously unselected package libclass-accessor-perl. Preparing to unpack .../125-libclass-accessor-perl_0.51-1_all.deb ... Unpacking libclass-accessor-perl (0.51-1) ... Selecting previously unselected package libclass-method-modifiers-perl. Preparing to unpack .../126-libclass-method-modifiers-perl_2.12-1_all.deb ... Unpacking libclass-method-modifiers-perl (2.12-1) ... Selecting previously unselected package libclass-xsaccessor-perl. Preparing to unpack .../127-libclass-xsaccessor-perl_1.19-2build8_amd64.deb ... Unpacking libclass-xsaccessor-perl (1.19-2build8) ... Selecting previously unselected package libclone-perl. Preparing to unpack .../128-libclone-perl_0.39-1_amd64.deb ... Unpacking libclone-perl (0.39-1) ... Selecting previously unselected package libdata-dump-perl. Preparing to unpack .../129-libdata-dump-perl_1.23-1_all.deb ... Unpacking libdata-dump-perl (1.23-1) ... Selecting previously unselected package libparams-util-perl. Preparing to unpack .../130-libparams-util-perl_1.07-3build3_amd64.deb ... Unpacking libparams-util-perl (1.07-3build3) ... Selecting previously unselected package libsub-install-perl. Preparing to unpack .../131-libsub-install-perl_0.928-1_all.deb ... Unpacking libsub-install-perl (0.928-1) ... Selecting previously unselected package libdata-optlist-perl. Preparing to unpack .../132-libdata-optlist-perl_0.110-1_all.deb ... Unpacking libdata-optlist-perl (0.110-1) ... Selecting previously unselected package libdevel-globaldestruction-perl. Preparing to unpack .../133-libdevel-globaldestruction-perl_0.14-1_all.deb ... Unpacking libdevel-globaldestruction-perl (0.14-1) ... Selecting previously unselected package libdigest-hmac-perl. Preparing to unpack .../134-libdigest-hmac-perl_1.03+dfsg-1_all.deb ... Unpacking libdigest-hmac-perl (1.03+dfsg-1) ... Selecting previously unselected package libdistro-info-perl. Preparing to unpack .../135-libdistro-info-perl_0.18ubuntu0.18.04.1_all.deb ... Unpacking libdistro-info-perl (0.18ubuntu0.18.04.1) ... Selecting previously unselected package libtimedate-perl. Preparing to unpack .../136-libtimedate-perl_2.3000-2_all.deb ... Unpacking libtimedate-perl (2.3000-2) ... Selecting previously unselected package perl-openssl-defaults:amd64. Preparing to unpack .../137-perl-openssl-defaults_3build1_amd64.deb ... Unpacking perl-openssl-defaults:amd64 (3build1) ... Selecting previously unselected package libnet-ssleay-perl. Preparing to unpack .../138-libnet-ssleay-perl_1.84-1ubuntu0.2_amd64.deb ... Unpacking libnet-ssleay-perl (1.84-1ubuntu0.2) ... Selecting previously unselected package libio-socket-ssl-perl. Preparing to unpack .../139-libio-socket-ssl-perl_2.060-3~ubuntu18.04.1_all.deb ... Unpacking libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... Selecting previously unselected package libnet-smtp-ssl-perl. Preparing to unpack .../140-libnet-smtp-ssl-perl_1.04-1_all.deb ... Unpacking libnet-smtp-ssl-perl (1.04-1) ... Selecting previously unselected package libmailtools-perl. Preparing to unpack .../141-libmailtools-perl_2.18-1_all.deb ... Unpacking libmailtools-perl (2.18-1) ... Selecting previously unselected package libsocket6-perl. Preparing to unpack .../142-libsocket6-perl_0.27-1build2_amd64.deb ... Unpacking libsocket6-perl (0.27-1build2) ... Selecting previously unselected package libio-socket-inet6-perl. Preparing to unpack .../143-libio-socket-inet6-perl_2.72-2_all.deb ... Unpacking libio-socket-inet6-perl (2.72-2) ... Selecting previously unselected package libnet-ip-perl. Preparing to unpack .../144-libnet-ip-perl_1.26-1_all.deb ... Unpacking libnet-ip-perl (1.26-1) ... Selecting previously unselected package libnet-dns-perl. Preparing to unpack .../145-libnet-dns-perl_1.10-2_all.deb ... Unpacking libnet-dns-perl (1.10-2) ... Selecting previously unselected package libnet-domain-tld-perl. Preparing to unpack .../146-libnet-domain-tld-perl_1.75-1_all.deb ... Unpacking libnet-domain-tld-perl (1.75-1) ... Selecting previously unselected package libemail-valid-perl. Preparing to unpack .../147-libemail-valid-perl_1.202-1_all.deb ... Unpacking libemail-valid-perl (1.202-1) ... Selecting previously unselected package libencode-locale-perl. Preparing to unpack .../148-libencode-locale-perl_1.05-1_all.deb ... Unpacking libencode-locale-perl (1.05-1) ... Selecting previously unselected package libexporter-tiny-perl. Preparing to unpack .../149-libexporter-tiny-perl_1.000000-2_all.deb ... Unpacking libexporter-tiny-perl (1.000000-2) ... Selecting previously unselected package libipc-system-simple-perl. Preparing to unpack .../150-libipc-system-simple-perl_1.25-4_all.deb ... Unpacking libipc-system-simple-perl (1.25-4) ... Selecting previously unselected package libfile-basedir-perl. Preparing to unpack .../151-libfile-basedir-perl_0.07-1_all.deb ... Unpacking libfile-basedir-perl (0.07-1) ... Selecting previously unselected package libfile-chdir-perl. Preparing to unpack .../152-libfile-chdir-perl_0.1008-1_all.deb ... Unpacking libfile-chdir-perl (0.1008-1) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../153-libfile-fcntllock-perl_0.22-3build2_amd64.deb ... Unpacking libfile-fcntllock-perl (0.22-3build2) ... Selecting previously unselected package libhttp-date-perl. Preparing to unpack .../154-libhttp-date-perl_6.02-1_all.deb ... Unpacking libhttp-date-perl (6.02-1) ... Selecting previously unselected package libfile-listing-perl. Preparing to unpack .../155-libfile-listing-perl_6.04-1_all.deb ... Unpacking libfile-listing-perl (6.04-1) ... Selecting previously unselected package libfont-afm-perl. Preparing to unpack .../156-libfont-afm-perl_1.20-2_all.deb ... Unpacking libfont-afm-perl (1.20-2) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../157-libfreetype6_2.8.1-2ubuntu2_amd64.deb ... Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2) ... Selecting previously unselected package libio-stringy-perl. Preparing to unpack .../158-libio-stringy-perl_2.111-2_all.deb ... Unpacking libio-stringy-perl (2.111-2) ... Selecting previously unselected package libparams-validate-perl. Preparing to unpack .../159-libparams-validate-perl_1.29-1_amd64.deb ... Unpacking libparams-validate-perl (1.29-1) ... Selecting previously unselected package libsub-exporter-perl. Preparing to unpack .../160-libsub-exporter-perl_0.987-1_all.deb ... Unpacking libsub-exporter-perl (0.987-1) ... Selecting previously unselected package libgetopt-long-descriptive-perl. Preparing to unpack .../161-libgetopt-long-descriptive-perl_0.102-1_all.deb ... Unpacking libgetopt-long-descriptive-perl (0.102-1) ... Selecting previously unselected package libsort-versions-perl. Preparing to unpack .../162-libsort-versions-perl_1.62-1_all.deb ... Unpacking libsort-versions-perl (1.62-1) ... Selecting previously unselected package libgit-wrapper-perl. Preparing to unpack .../163-libgit-wrapper-perl_0.047-1_all.deb ... Unpacking libgit-wrapper-perl (0.047-1) ... Selecting previously unselected package libio-html-perl. Preparing to unpack .../164-libio-html-perl_1.001-1_all.deb ... Unpacking libio-html-perl (1.001-1) ... Selecting previously unselected package liblwp-mediatypes-perl. Preparing to unpack .../165-liblwp-mediatypes-perl_6.02-1_all.deb ... Unpacking liblwp-mediatypes-perl (6.02-1) ... Selecting previously unselected package libhttp-message-perl. Preparing to unpack .../166-libhttp-message-perl_6.14-1_all.deb ... Unpacking libhttp-message-perl (6.14-1) ... Selecting previously unselected package libhtml-form-perl. Preparing to unpack .../167-libhtml-form-perl_6.03-1_all.deb ... Unpacking libhtml-form-perl (6.03-1) ... Selecting previously unselected package libhtml-tree-perl. Preparing to unpack .../168-libhtml-tree-perl_5.07-1_all.deb ... Unpacking libhtml-tree-perl (5.07-1) ... Selecting previously unselected package libhtml-format-perl. Preparing to unpack .../169-libhtml-format-perl_2.12-1_all.deb ... Unpacking libhtml-format-perl (2.12-1) ... Selecting previously unselected package libhttp-cookies-perl. Preparing to unpack .../170-libhttp-cookies-perl_6.04-1_all.deb ... Unpacking libhttp-cookies-perl (6.04-1) ... Selecting previously unselected package libhttp-daemon-perl. Preparing to unpack .../171-libhttp-daemon-perl_6.01-1_all.deb ... Unpacking libhttp-daemon-perl (6.01-1) ... Selecting previously unselected package libhttp-negotiate-perl. Preparing to unpack .../172-libhttp-negotiate-perl_6.00-2_all.deb ... Unpacking libhttp-negotiate-perl (6.00-2) ... Selecting previously unselected package libimport-into-perl. Preparing to unpack .../173-libimport-into-perl_1.002005-1_all.deb ... Unpacking libimport-into-perl (1.002005-1) ... Selecting previously unselected package libio-pty-perl. Preparing to unpack .../174-libio-pty-perl_1%3a1.08-1.1build4_amd64.deb ... Unpacking libio-pty-perl (1:1.08-1.1build4) ... Selecting previously unselected package libio-string-perl. Preparing to unpack .../175-libio-string-perl_1.08-3_all.deb ... Unpacking libio-string-perl (1.08-3) ... Selecting previously unselected package libipc-run-perl. Preparing to unpack .../176-libipc-run-perl_0.96-1_all.deb ... Unpacking libipc-run-perl (0.96-1) ... Selecting previously unselected package libjpeg8:amd64. Preparing to unpack .../177-libjpeg8_8c-2ubuntu8_amd64.deb ... Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../178-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Selecting previously unselected package liblist-compare-perl. Preparing to unpack .../179-liblist-compare-perl_0.53-1_all.deb ... Unpacking liblist-compare-perl (0.53-1) ... Selecting previously unselected package liblist-moreutils-perl. Preparing to unpack .../180-liblist-moreutils-perl_0.416-1build3_amd64.deb ... Unpacking liblist-moreutils-perl (0.416-1build3) ... Selecting previously unselected package libnet-http-perl. Preparing to unpack .../181-libnet-http-perl_6.17-1_all.deb ... Unpacking libnet-http-perl (6.17-1) ... Selecting previously unselected package libwww-robotrules-perl. Preparing to unpack .../182-libwww-robotrules-perl_6.01-1_all.deb ... Unpacking libwww-robotrules-perl (6.01-1) ... Selecting previously unselected package libwww-perl. Preparing to unpack .../183-libwww-perl_6.31-1ubuntu0.1_all.deb ... Unpacking libwww-perl (6.31-1ubuntu0.1) ... Selecting previously unselected package liblwp-protocol-https-perl. Preparing to unpack .../184-liblwp-protocol-https-perl_6.07-2_all.deb ... Unpacking liblwp-protocol-https-perl (6.07-2) ... Selecting previously unselected package librole-tiny-perl. Preparing to unpack .../185-librole-tiny-perl_2.000006-1_all.deb ... Unpacking librole-tiny-perl (2.000006-1) ... Selecting previously unselected package libstrictures-perl. Preparing to unpack .../186-libstrictures-perl_2.000003-1_all.deb ... Unpacking libstrictures-perl (2.000003-1) ... Selecting previously unselected package libsub-quote-perl. Preparing to unpack .../187-libsub-quote-perl_2.005000-1_all.deb ... Unpacking libsub-quote-perl (2.005000-1) ... Selecting previously unselected package libmoo-perl. Preparing to unpack .../188-libmoo-perl_2.003004-1_all.deb ... Unpacking libmoo-perl (2.003004-1) ... Selecting previously unselected package libpackage-stash-perl. Preparing to unpack .../189-libpackage-stash-perl_0.37-1_all.deb ... Unpacking libpackage-stash-perl (0.37-1) ... Selecting previously unselected package libsub-identify-perl. Preparing to unpack .../190-libsub-identify-perl_0.14-1_amd64.deb ... Unpacking libsub-identify-perl (0.14-1) ... Selecting previously unselected package libnamespace-clean-perl. Preparing to unpack .../191-libnamespace-clean-perl_0.27-1_all.deb ... Unpacking libnamespace-clean-perl (0.27-1) ... Selecting previously unselected package libnumber-compare-perl. Preparing to unpack .../192-libnumber-compare-perl_0.03-1_all.deb ... Unpacking libnumber-compare-perl (0.03-1) ... Selecting previously unselected package libnumber-range-perl. Preparing to unpack .../193-libnumber-range-perl_0.12-1_all.deb ... Unpacking libnumber-range-perl (0.12-1) ... Selecting previously unselected package libpackage-stash-xs-perl. Preparing to unpack .../194-libpackage-stash-xs-perl_0.28-3build2_amd64.deb ... Unpacking libpackage-stash-xs-perl (0.28-3build2) ... Selecting previously unselected package libpaper1:amd64. Preparing to unpack .../195-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libpaper-utils. Preparing to unpack .../196-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libparse-debianchangelog-perl. Preparing to unpack .../197-libparse-debianchangelog-perl_1.2.0-12_all.deb ... Unpacking libparse-debianchangelog-perl (1.2.0-12) ... Selecting previously unselected package libtext-glob-perl. Preparing to unpack .../198-libtext-glob-perl_0.10-1_all.deb ... Unpacking libtext-glob-perl (0.10-1) ... Selecting previously unselected package libpath-iterator-rule-perl. Preparing to unpack .../199-libpath-iterator-rule-perl_1.009-1_all.deb ... Unpacking libpath-iterator-rule-perl (1.009-1) ... Selecting previously unselected package libpath-tiny-perl. Preparing to unpack .../200-libpath-tiny-perl_0.104-1_all.deb ... Unpacking libpath-tiny-perl (0.104-1) ... Selecting previously unselected package libperlio-gzip-perl. Preparing to unpack .../201-libperlio-gzip-perl_0.19-1build3_amd64.deb ... Unpacking libperlio-gzip-perl (0.19-1build3) ... Selecting previously unselected package libpod-constants-perl. Preparing to unpack .../202-libpod-constants-perl_0.19-1_all.deb ... Unpacking libpod-constants-perl (0.19-1) ... Selecting previously unselected package libregexp-pattern-license-perl. Preparing to unpack .../203-libregexp-pattern-license-perl_3.0.31-3_all.deb ... Unpacking libregexp-pattern-license-perl (3.0.31-3) ... Selecting previously unselected package libsort-key-perl. Preparing to unpack .../204-libsort-key-perl_1.33-2_amd64.deb ... Unpacking libsort-key-perl (1.33-2) ... Selecting previously unselected package libstring-copyright-perl. Preparing to unpack .../205-libstring-copyright-perl_0.003005-1_all.deb ... Unpacking libstring-copyright-perl (0.003005-1) ... Selecting previously unselected package libstring-escape-perl. Preparing to unpack .../206-libstring-escape-perl_2010.002-2_all.deb ... Unpacking libstring-escape-perl (2010.002-2) ... Selecting previously unselected package libtext-levenshtein-perl. Preparing to unpack .../207-libtext-levenshtein-perl_0.13-1_all.deb ... Unpacking libtext-levenshtein-perl (0.13-1) ... Selecting previously unselected package libjbig0:amd64. Preparing to unpack .../208-libjbig0_2.1-3.1build1_amd64.deb ... Unpacking libjbig0:amd64 (2.1-3.1build1) ... Selecting previously unselected package libtiff5:amd64. Preparing to unpack .../209-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ... Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Selecting previously unselected package libunicode-utf8-perl. Preparing to unpack .../210-libunicode-utf8-perl_0.60-1build4_amd64.deb ... Unpacking libunicode-utf8-perl (0.60-1build4) ... Selecting previously unselected package libwebp6:amd64. Preparing to unpack .../211-libwebp6_0.6.1-2_amd64.deb ... Unpacking libwebp6:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpdemux2:amd64. Preparing to unpack .../212-libwebpdemux2_0.6.1-2_amd64.deb ... Unpacking libwebpdemux2:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpmux3:amd64. Preparing to unpack .../213-libwebpmux3_0.6.1-2_amd64.deb ... Unpacking libwebpmux3:amd64 (0.6.1-2) ... Selecting previously unselected package libxml-namespacesupport-perl. Preparing to unpack .../214-libxml-namespacesupport-perl_1.12-1_all.deb ... Unpacking libxml-namespacesupport-perl (1.12-1) ... Selecting previously unselected package libxml-sax-base-perl. Preparing to unpack .../215-libxml-sax-base-perl_1.09-1_all.deb ... Unpacking libxml-sax-base-perl (1.09-1) ... Selecting previously unselected package libxml-sax-perl. Preparing to unpack .../216-libxml-sax-perl_0.99+dfsg-2ubuntu1_all.deb ... Unpacking libxml-sax-perl (0.99+dfsg-2ubuntu1) ... Selecting previously unselected package libxml-libxml-perl. Preparing to unpack .../217-libxml-libxml-perl_2.0128+dfsg-5_amd64.deb ... Unpacking libxml-libxml-perl (2.0128+dfsg-5) ... Selecting previously unselected package libxml-parser-perl. Preparing to unpack .../218-libxml-parser-perl_2.44-2build3_amd64.deb ... Unpacking libxml-parser-perl (2.44-2build3) ... Selecting previously unselected package libxml-sax-expat-perl. Preparing to unpack .../219-libxml-sax-expat-perl_0.40-2_all.deb ... Unpacking libxml-sax-expat-perl (0.40-2) ... Selecting previously unselected package libxml-simple-perl. Preparing to unpack .../220-libxml-simple-perl_2.24-1_all.deb ... Unpacking libxml-simple-perl (2.24-1) ... Selecting previously unselected package libyaml-libyaml-perl. Preparing to unpack .../221-libyaml-libyaml-perl_0.69+repack-1_amd64.deb ... Unpacking libyaml-libyaml-perl (0.69+repack-1) ... Selecting previously unselected package licensecheck. Preparing to unpack .../222-licensecheck_3.0.31-2_all.deb ... Unpacking licensecheck (3.0.31-2) ... Selecting previously unselected package patchutils. Preparing to unpack .../223-patchutils_0.3.4-2_amd64.deb ... Unpacking patchutils (0.3.4-2) ... Selecting previously unselected package t1utils. Preparing to unpack .../224-t1utils_1.41-2_amd64.deb ... Unpacking t1utils (1.41-2) ... Selecting previously unselected package lintian. Preparing to unpack .../225-lintian_2.5.81ubuntu1_all.deb ... Unpacking lintian (2.5.81ubuntu1) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../226-manpages-dev_4.15-1_all.deb ... Unpacking manpages-dev (4.15-1) ... Selecting previously unselected package python3-dateutil. Preparing to unpack .../227-python3-dateutil_2.6.1-1_all.deb ... Unpacking python3-dateutil (2.6.1-1) ... Selecting previously unselected package python3-roman. Preparing to unpack .../228-python3-roman_2.0.0-3_all.deb ... Unpacking python3-roman (2.0.0-3) ... Selecting previously unselected package python3-docutils. Preparing to unpack .../229-python3-docutils_0.14+dfsg-3_all.deb ... Unpacking python3-docutils (0.14+dfsg-3) ... Selecting previously unselected package python3-pyparsing. Preparing to unpack .../230-python3-pyparsing_2.2.0+dfsg1-2_all.deb ... Unpacking python3-pyparsing (2.2.0+dfsg1-2) ... Selecting previously unselected package python3-catkin-pkg-modules. Preparing to unpack .../231-python3-catkin-pkg-modules_0.4.20-1_all.deb ... Unpacking python3-catkin-pkg-modules (0.4.20-1) ... Selecting previously unselected package python3-certifi. Preparing to unpack .../232-python3-certifi_2018.1.18-2_all.deb ... Unpacking python3-certifi (2018.1.18-2) ... Selecting previously unselected package python3-lib2to3. Preparing to unpack .../233-python3-lib2to3_3.6.9-1~18.04_all.deb ... Unpacking python3-lib2to3 (3.6.9-1~18.04) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../234-python3-distutils_3.6.9-1~18.04_all.deb ... Unpacking python3-distutils (3.6.9-1~18.04) ... Selecting previously unselected package python3-empy. Preparing to unpack .../235-python3-empy_3.3.2-1build1_all.deb ... Unpacking python3-empy (3.3.2-1build1) ... Selecting previously unselected package python3-idna. Preparing to unpack .../236-python3-idna_2.6-1_all.deb ... Unpacking python3-idna (2.6-1) ... Selecting previously unselected package python3-olefile. Preparing to unpack .../237-python3-olefile_0.45.1-1_all.deb ... Unpacking python3-olefile (0.45.1-1) ... Selecting previously unselected package python3-pil:amd64. Preparing to unpack .../238-python3-pil_5.1.0-1ubuntu0.2_amd64.deb ... Unpacking python3-pil:amd64 (5.1.0-1ubuntu0.2) ... Selecting previously unselected package python3-pygments. Preparing to unpack .../239-python3-pygments_2.2.0+dfsg-1_all.deb ... Unpacking python3-pygments (2.2.0+dfsg-1) ... Selecting previously unselected package python3-urllib3. Preparing to unpack .../240-python3-urllib3_1.22-1ubuntu0.18.04.1_all.deb ... Unpacking python3-urllib3 (1.22-1ubuntu0.18.04.1) ... Selecting previously unselected package python3-requests. Preparing to unpack .../241-python3-requests_2.18.4-2ubuntu0.1_all.deb ... Unpacking python3-requests (2.18.4-2ubuntu0.1) ... Selecting previously unselected package python3-rospkg-modules. Preparing to unpack .../242-python3-rospkg-modules_1.2.6-1_all.deb ... Unpacking python3-rospkg-modules (1.2.6-1) ... Selecting previously unselected package python3-setuptools. Preparing to unpack .../243-python3-setuptools_39.0.1-2_all.deb ... Unpacking python3-setuptools (39.0.1-2) ... Selecting previously unselected package python3-rosdistro-modules. Preparing to unpack .../244-python3-rosdistro-modules_0.8.2-1_all.deb ... Unpacking python3-rosdistro-modules (0.8.2-1) ... Selecting previously unselected package python3-unidiff. Preparing to unpack .../245-python3-unidiff_0.5.4-1_all.deb ... Unpacking python3-unidiff (0.5.4-1) ... Selecting previously unselected package python3-xdg. Preparing to unpack .../246-python3-xdg_0.25-4ubuntu1_all.deb ... Unpacking python3-xdg (0.25-4ubuntu1) ... Selecting previously unselected package unzip. Preparing to unpack .../247-unzip_6.0-21ubuntu1_amd64.deb ... Unpacking unzip (6.0-21ubuntu1) ... Selecting previously unselected package wdiff. Preparing to unpack .../248-wdiff_1.2.2-2_amd64.deb ... Unpacking wdiff (1.2.2-2) ... Selecting previously unselected package libauthen-sasl-perl. Preparing to unpack .../249-libauthen-sasl-perl_2.1600-1_all.deb ... Unpacking libauthen-sasl-perl (2.1600-1) ... Selecting previously unselected package python3-magic. Preparing to unpack .../250-python3-magic_2%3a0.4.15-1_all.deb ... Unpacking python3-magic (2:0.4.15-1) ... Setting up libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up python-apt-common (1.6.5ubuntu0.3) ... Setting up libedit2:amd64 (3.1-20170329-1) ... Setting up libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up libapt-inst2.0:amd64 (1.6.12ubuntu0.1) ... Setting up manpages (4.15-1) ... Setting up git-man (1:2.17.1-1ubuntu0.7) ... Setting up libicu60:amd64 (60.2-3ubuntu3.1) ... Setting up libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up less (487-0.1) ... Setting up python3-roman (2.0.0-3) ... Setting up make (4.1-9.1ubuntu1) ... Setting up python3-apt (1.6.5ubuntu0.3) ... Setting up libapt-pkg-perl (0.1.33build1) ... Setting up libssl1.0.0:amd64 (1.0.2n-1ubuntu5.3) ... Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Setting up python3-olefile (0.45.1-1) ... Setting up iso-codes (3.79-1) ... Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Setting up libjbig0:amd64 (2.1-3.1build1) ... Setting up perl-openssl-defaults:amd64 (3build1) ... Setting up libpsl5:amd64 (0.19.1-5build1) ... Setting up tzdata (2020a-0ubuntu0.18.04) ... Current default time zone: 'Etc/UTC' Local time is now: Fri Jun 5 16:09:54 UTC 2020. Universal Time is now: Fri Jun 5 16:09:54 UTC 2020. Run 'dpkg-reconfigure tzdata' if you wish to change it. Setting up libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up groff-base (1.22.3-10) ... Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... No schema files found: doing nothing. Setting up python3-magic (2:0.4.15-1) ... Setting up python3-idna (2.6-1) ... Setting up python3-xdg (0.25-4ubuntu1) ... Setting up python3-six (1.11.0-2) ... Setting up unzip (6.0-21ubuntu1) ... Setting up linux-libc-dev:amd64 (4.15.0-101.102) ... Setting up libmpfr6:amd64 (4.0.1-1) ... Setting up python3-pyparsing (2.2.0+dfsg1-2) ... Setting up dctrl-tools (2.24-2build1) ... Setting up distro-info-data (0.37ubuntu0.7) ... Setting up gettext-base (0.19.8.1-6ubuntu0.3) ... Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Setting up libpipeline1:amd64 (1.5.0-1) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Setting up perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Setting up sgml-base (1.29) ... Setting up python3-pkg-resources (39.0.1-2) ... Setting up libgdbm5:amd64 (1.14.1-6) ... Setting up lsb-release (9.20170808ubuntu1) ... Setting up at (3.1.20-3.1ubuntu2) ... invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Setting up libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Setting up ucf (3.0038) ... Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Setting up libfreetype6:amd64 (2.8.1-2ubuntu2) ... Setting up liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up libcroco3:amd64 (0.6.12-2) ... Setting up libgpgme11:amd64 (1.10.0-1ubuntu2) ... Setting up gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.3) ... Setting up libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up libyaml-0-2:amd64 (0.1.7-2ubuntu3) ... Setting up patch (2.7.6-2ubuntu1.1) ... Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... Setting up libunwind8:amd64 (1.2.1-8) ... Setting up krb5-locales (1.16-2ubuntu0.1) ... Setting up publicsuffix (20180223.1310-1) ... Setting up python3-chardet (3.0.4-1) ... Setting up t1utils (1.41-2) ... Setting up libfakeroot:amd64 (1.22-2ubuntu1) ... Setting up openssl (1.1.1-1ubuntu2.1~18.04.6) ... Setting up liblocale-gettext-perl (1.07-3build2) ... Setting up wdiff (1.2.2-2) ... Setting up shared-mime-info (1.9-2) ... Setting up python3-urllib3 (1.22-1ubuntu0.18.04.1) ... Setting up python3-unidiff (0.5.4-1) ... Setting up libmpc3:amd64 (1.1.0-1) ... Setting up libc-dev-bin (2.27-3ubuntu1) ... Setting up libxdmcp6:amd64 (1:1.1.2-3) ... Setting up xml-core (0.18) ... Setting up libgdbm-compat4:amd64 (1.14.1-6) ... Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Setting up bsdmainutils (11.1.2ubuntu1) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/write.1.gz because associated file /usr/share/man/man1/bsd-write.1.gz (of link group write) doesn't exist update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/from.1.gz because associated file /usr/share/man/man1/bsd-from.1.gz (of link group from) doesn't exist Setting up python3-lib2to3 (3.6.9-1~18.04) ... Setting up ca-certificates (20190110~18.04.1) ... Updating certificates in /etc/ssl/certs... 127 added, 0 removed; done. Setting up manpages-dev (4.15-1) ... Setting up libc6-dev:amd64 (2.27-3ubuntu1) ... Setting up xdg-user-dirs (0.17-1ubuntu1) ... Setting up python3-debian (0.1.32) ... Setting up python3-distutils (3.6.9-1~18.04) ... Setting up libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up libx11-data (2:1.6.4-3ubuntu0.2) ... Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1) ... Setting up diffstat (1.61-1build1) ... Setting up libxau6:amd64 (1:1.0.8-1) ... Setting up python3-dateutil (2.6.1-1) ... Setting up netbase (5.4) ... Setting up libwebp6:amd64 (0.6.1-2) ... Setting up libjpeg8:amd64 (8c-2ubuntu8) ... Setting up libisl19:amd64 (0.19-1) ... Setting up python3-pygments (2.2.0+dfsg-1) ... Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Creating config file /etc/papersize with new version Setting up python3-yaml (3.12-1build2) ... Setting up strace (4.21-1ubuntu1) ... Setting up libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... Setting up libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up gettext (0.19.8.1-6ubuntu0.3) ... Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.3) ... Setting up libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up python2.7 (2.7.17-1~18.04ubuntu1) ... Setting up python3-certifi (2018.1.18-2) ... Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Setting up python3-gpg (1.10.0-1ubuntu2) ... Setting up fakeroot (1.22-2ubuntu1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist Setting up libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up cpp-7 (7.5.0-3ubuntu1~18.04) ... Setting up libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Setting up libwebpmux3:amd64 (0.6.1-2) ... Setting up dput (1.0.1ubuntu1) ... Setting up python3-requests (2.18.4-2ubuntu0.1) ... Setting up libwebpdemux2:amd64 (0.6.1-2) ... Setting up man-db (2.8.3-2ubuntu0.1) ... Building database of manual pages ... Setting up libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Setting up python3-setuptools (39.0.1-2) ... Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ... Setting up python (2.7.15~rc1-1) ... Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.3) ... Setting up cpp (4:7.4.0-1ubuntu2.3) ... Setting up python3-pil:amd64 (5.1.0-1ubuntu0.2) ... Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up libxmuu1:amd64 (2:1.1.2-2) ... Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Setting up perl (5.26.1-6ubuntu0.3) ... Setting up libfile-chdir-perl (0.1008-1) ... Setting up libfile-fcntllock-perl (0.22-3build2) ... Setting up libtext-glob-perl (0.10-1) ... Setting up intltool-debian (0.35.0+20060710.4) ... Setting up libxml-sax-base-perl (1.09-1) ... Setting up libpackage-stash-xs-perl (0.28-3build2) ... Setting up libstrictures-perl (2.000003-1) ... Setting up liblwp-mediatypes-perl (6.02-1) ... Setting up libsocket6-perl (0.27-1build2) ... Setting up patchutils (0.3.4-2) ... Setting up liburi-perl (1.73-1) ... Setting up libdata-dump-perl (1.23-1) ... Setting up libdigest-hmac-perl (1.03+dfsg-1) ... Setting up libio-string-perl (1.08-3) ... Setting up libalgorithm-diff-perl (1.19.03-1) ... Setting up libclone-perl (0.39-1) ... Setting up python3-empy (3.3.2-1build1) ... Setting up libclass-xsaccessor-perl (1.19-2build8) ... Setting up libnet-http-perl (6.17-1) ... Setting up libnumber-compare-perl (0.03-1) ... Setting up binutils (2.30-21ubuntu1~18.04.3) ... Setting up libunicode-utf8-perl (0.60-1build4) ... Setting up libparams-util-perl (1.07-3build3) ... Setting up libsub-name-perl (0.21-1build1) ... Setting up openssh-client (1:7.6p1-4ubuntu0.3) ... Setting up libyaml-libyaml-perl (0.69+repack-1) ... Setting up libsub-quote-perl (2.005000-1) ... Setting up libfcgi-perl (0.78-2build1) ... Setting up libwww-robotrules-perl (6.01-1) ... Setting up libauthen-sasl-perl (2.1600-1) ... Setting up libclass-accessor-perl (0.51-1) ... Setting up libsort-key-perl (1.33-2) ... Setting up libhtml-tagset-perl (3.20-3) ... Setting up libpath-tiny-perl (0.104-1) ... Setting up libnet-domain-tld-perl (1.75-1) ... Setting up libsub-install-perl (0.928-1) ... Setting up libdata-optlist-perl (0.110-1) ... Setting up libio-stringy-perl (2.111-2) ... Setting up libsub-exporter-progressive-perl (0.001013-1) ... Setting up libtry-tiny-perl (0.30-1) ... Setting up libclass-method-modifiers-perl (2.12-1) ... Setting up libfont-afm-perl (1.20-2) ... Setting up libregexp-pattern-license-perl (3.0.31-3) ... Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ... Setting up libxext6:amd64 (2:1.3.3-1) ... Setting up libdistro-info-perl (0.18ubuntu0.18.04.1) ... Setting up libio-socket-inet6-perl (2.72-2) ... Setting up libxml-namespacesupport-perl (1.12-1) ... Setting up libio-pty-perl (1:1.08-1.1build4) ... Setting up libfile-which-perl (1.21-1) ... Setting up libencode-locale-perl (1.05-1) ... Setting up libperlio-gzip-perl (0.19-1build3) ... Setting up libtext-levenshtein-perl (0.13-1) ... Setting up gcc-7 (7.5.0-3ubuntu1~18.04) ... Setting up liberror-perl (0.17025-1) ... Setting up libvariable-magic-perl (0.62-1) ... Setting up libtimedate-perl (2.3000-2) ... Setting up libnet-ip-perl (1.26-1) ... Setting up librole-tiny-perl (2.000006-1) ... Setting up libnet-ssleay-perl (1.84-1ubuntu0.2) ... Setting up g++-7 (7.5.0-3ubuntu1~18.04) ... Setting up libcurl3-gnutls:amd64 (7.58.0-2ubuntu3.8) ... Setting up libfile-homedir-perl (1.002-1) ... Setting up libipc-system-simple-perl (1.25-4) ... Setting up libfile-basedir-perl (0.07-1) ... Setting up libstring-escape-perl (2010.002-2) ... Setting up libb-hooks-op-check-perl (0.22-1) ... Setting up libio-html-perl (1.001-1) ... Setting up libexporter-tiny-perl (1.000000-2) ... Setting up libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ... Setting up libnumber-range-perl (0.12-1) ... Setting up liblist-compare-perl (0.53-1) ... Setting up libpath-iterator-rule-perl (1.009-1) ... Setting up gcc (4:7.4.0-1ubuntu2.3) ... Setting up libnet-dns-perl (1.10-2) ... Setting up libsub-identify-perl (0.14-1) ... Setting up libpod-constants-perl (0.19-1) ... Setting up libsort-versions-perl (1.62-1) ... Setting up libio-socket-ssl-perl (2.060-3~ubuntu18.04.1) ... Setting up libdynaloader-functions-perl (0.003-1) ... Setting up libsub-exporter-perl (0.987-1) ... Setting up xauth (1:1.0.10-1) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up dpkg-dev (1.19.0.5ubuntu2.3) ... Setting up libalgorithm-diff-xs-perl (0.04-5) ... Setting up libstring-copyright-perl (0.003005-1) ... Setting up libhtml-parser-perl (3.72-3build1) ... Setting up libipc-run-perl (0.96-1) ... Setting up libcgi-pm-perl (4.38-1) ... Setting up libdevel-globaldestruction-perl (0.14-1) ... Setting up libparse-debianchangelog-perl (1.2.0-12) ... Setting up g++ (4:7.4.0-1ubuntu2.3) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist Setting up git (1:2.17.1-1ubuntu0.7) ... Setting up libxml-sax-perl (0.99+dfsg-2ubuntu1) ... update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version Setting up liblist-moreutils-perl (0.416-1build3) ... Setting up libgit-wrapper-perl (0.047-1) ... Setting up libhttp-date-perl (6.02-1) ... Setting up libnet-smtp-ssl-perl (1.04-1) ... Setting up curl (7.58.0-2ubuntu3.8) ... Setting up build-essential (12.4ubuntu1) ... Setting up libdevel-callchecker-perl (0.007-2build1) ... Setting up devscripts (2.17.12ubuntu1.1) ... Setting up libcgi-fast-perl (1:2.13-1) ... Setting up libhtml-tree-perl (5.07-1) ... Setting up libfile-listing-perl (6.04-1) ... Setting up libhttp-message-perl (6.14-1) ... Setting up libxml-libxml-perl (2.0128+dfsg-5) ... update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50... update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version Setting up libparams-classify-perl (0.015-1) ... Setting up libhttp-negotiate-perl (6.00-2) ... Setting up libmailtools-perl (2.18-1) ... Setting up libhtml-format-perl (2.12-1) ... Setting up libemail-valid-perl (1.202-1) ... Setting up libhttp-cookies-perl (6.04-1) ... Setting up libmodule-runtime-perl (0.016-1) ... Setting up libhttp-daemon-perl (6.01-1) ... Setting up libxml-simple-perl (2.24-1) ... Setting up lintian (2.5.81ubuntu1) ... Setting up libhtml-form-perl (6.03-1) ... Setting up libimport-into-perl (1.002005-1) ... Setting up libmodule-implementation-perl (0.09-1) ... Setting up libparams-validate-perl (1.29-1) ... Setting up libmoo-perl (2.003004-1) ... Setting up libb-hooks-endofscope-perl (0.21-1) ... Setting up libpackage-stash-perl (0.37-1) ... Setting up libgetopt-long-descriptive-perl (0.102-1) ... Setting up libnamespace-clean-perl (0.27-1) ... Setting up licensecheck (3.0.31-2) ... Setting up libwww-perl (6.31-1ubuntu0.1) ... Setting up liblwp-protocol-https-perl (6.07-2) ... Setting up libxml-parser-perl (2.44-2build3) ... Setting up libxml-sax-expat-perl (0.40-2) ... update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::Expat with priority 50... update-perl-sax-parsers: Updating overall Perl SAX parser modules info file... Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Processing triggers for sgml-base (1.29) ... Setting up docutils-common (0.14+dfsg-3) ... Processing triggers for sgml-base (1.29) ... Setting up python3-docutils (0.14+dfsg-3) ... update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode Setting up python3-catkin-pkg-modules (0.4.20-1) ... Setting up python3-rospkg-modules (1.2.6-1) ... Setting up python3-rosdistro-modules (0.8.2-1) ... Processing triggers for ca-certificates (20190110~18.04.1) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Invoking 'apt-get clean' ---> 986265e44f08 Removing intermediate container ad378d05aa6c Step 24/28 : RUN echo "2020-06-05 16:08:12 +0000" ---> Running in 9ee5f7e6d261 2020-06-05 16:08:12 +0000 ---> 888a27e37fe4 Removing intermediate container 9ee5f7e6d261 Step 25/28 : RUN python3 -u /tmp/wrapper_scripts/apt.py update ---> Running in a8488998a6a5 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... ---> a66a0e557d56 Removing intermediate container a8488998a6a5 Step 26/28 : USER buildfarm ---> Running in c7f9c9a678ef ---> e93414448811 Removing intermediate container c7f9c9a678ef Step 27/28 : ENTRYPOINT sh -c ---> Running in 375358f41436 ---> 14a156833719 Removing intermediate container 375358f41436 Step 28/28 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic librealsense2_framos --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic librealsense2_framos --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic librealsense2_framos ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --env-vars --dockerfile-dir /tmp/docker_build_binarydeb ---> Running in caa7351a25e0 ---> c74bb9f4e237 Removing intermediate container caa7351a25e0 Successfully built c74bb9f4e237 Successfully tagged binarydeb_task_generation.melodic_ubuntu_bionic_amd64_librealsense2_framos:latest + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - binarydeb task # BEGIN SECTION: Run Dockerfile - binarydeb task + [ -f /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/binarydeb ] + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/binarydeb + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_build_binarydeb + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/binarydeb + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_build_binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_build_binarydeb:/tmp/docker_build_binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_task_generation.melodic_ubuntu_bionic_amd64_librealsense2_framos # BEGIN SUBSECTION: get sourcedeb Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-librealsense2-framos=2.29.1-1bionic' Invoking 'apt-get source --download-only --only-source ros-melodic-librealsense2-framos=2.29.1-1bionic' Reading package lists... Need to get 42.7 MB of source archives. Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-librealsense2-framos 2.29.1-1bionic (dsc) [1,272 B] Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-librealsense2-framos 2.29.1-1bionic (tar) [42.7 MB] Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-librealsense2-framos 2.29.1-1bionic (diff) [1,984 B] Fetched 42.7 MB in 1s (37.2 MB/s) Download complete and in download only mode Invoking 'dpkg-source -x ros-melodic-librealsense2-framos_2.29.1-1bionic.dsc' dpkg-source: warning: extracting unsigned source package (ros-melodic-librealsense2-framos_2.29.1-1bionic.dsc) dpkg-source: info: extracting ros-melodic-librealsense2-framos in ros-melodic-librealsense2-framos-2.29.1 dpkg-source: info: unpacking ros-melodic-librealsense2-framos_2.29.1.orig.tar.gz dpkg-source: info: unpacking ros-melodic-librealsense2-framos_2.29.1-1bionic.debian.tar.xz Package maintainer emails: marc@hanheide.net # END SUBSECTION # BEGIN SUBSECTION: append build timestamp Invoking 'debchange -v 2.29.1-1bionic.20200605.161113 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' # END SUBSECTION Looking for the '.dsc' file of package 'ros-melodic-librealsense2-framos' with version '2.29.1-1' Using the following distribution repositories: http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': # generated from release/binarydeb_task.Dockerfile.em FROM ubuntu:bionic VOLUME ["/var/cache/apt/archives"] ENV DEBIAN_FRONTEND noninteractive RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV TZ GMT+00 RUN useradd -u 1002 -l -m buildfarm RUN mkdir /tmp/keys RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) RUN mkdir /tmp/wrapper_scripts RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py # automatic invalidation once every day RUN echo "2020-06-05 (+0000)" RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential # for each dependency: echo version, apt update, apt install, apt clean # to prevent exceeding the docker layer limit several lines have been folded RUN echo "apt-src: 0.25.2" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper RUN echo "dkms: 2.3-3ubuntu9.7" && echo "framoscamerasuite: 4.2.0.0" && echo "libgl1-mesa-dev: 19.2.8-0ubuntu0~18.04.3" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes dkms framoscamerasuite libgl1-mesa-dev RUN echo "libglfw3-dev: 3.2.1-1" && echo "libglu1-mesa-dev: 9.0.0-2.1build1" && echo "libgtk-3-dev: 3.22.30-1ubuntu4" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libglfw3-dev libglu1-mesa-dev libgtk-3-dev RUN echo "libssl-dev: 1.1.1-1ubuntu2.1~18.04.6" && echo "libusb-1.0-0-dev: 2:1.0.21-2" && echo "linux-headers-generic: 4.15.0.101.91" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libssl-dev libusb-1.0-0-dev linux-headers-generic RUN echo "pkg-config: 0.29.1-0ubuntu2" && echo "ros-melodic-catkin: 0.7.23-1bionic.20200303.045725" && echo "udev: 237-3ubuntu10.41" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes pkg-config ros-melodic-catkin udev USER buildfarm ENTRYPOINT ["sh", "-c"] CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic librealsense2_framos --sourcedeb-dir /tmp/binarydeb"] Mount the following volumes when running the container: -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro -v /tmp/binarydeb:/tmp/binarydeb + echo # END SECTION # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins228083467242341574.sh + sleep 1 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 18552 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid + echo # BEGIN SECTION: Build Dockerfile - build binarydeb # BEGIN SECTION: Build Dockerfile - build binarydeb + cd /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_build_binarydeb + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic Check docker base image for updates: docker pull ubuntu:bionic bionic: Pulling from library/ubuntu Digest: sha256:3235326357dfb65f1781dbc4df3b834546d8bf914e82cce58e6e6b676e23ce8f Status: Image is up to date for ubuntu:bionic + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_librealsense2_framos . Sending build context to Docker daemon 21.5kB Step 1/31 : FROM ubuntu:bionic ---> c3c304cb4f22 Step 2/31 : VOLUME /var/cache/apt/archives ---> Using cache ---> 15a1441648bd Step 3/31 : ENV DEBIAN_FRONTEND noninteractive ---> Using cache ---> 01effda6aa19 Step 4/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 8001f4249f40 Step 5/31 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen ---> Using cache ---> 03977fb36a34 Step 6/31 : RUN locale-gen en_US.UTF-8 ---> Using cache ---> 9259f07952ec Step 7/31 : ENV LANG en_US.UTF-8 ---> Using cache ---> 0e8e98ea0bbc Step 8/31 : ENV TZ GMT+00 ---> Using cache ---> fe196eedfcf0 Step 9/31 : RUN useradd -u 1002 -l -m buildfarm ---> Using cache ---> 9006f2fb0f27 Step 10/31 : RUN mkdir /tmp/keys ---> Using cache ---> 2e7bc5fb7e42 Step 11/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Using cache ---> 5884c6d2ebc5 Step 12/31 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key ---> Using cache ---> 9c060466db58 Step 13/31 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key ---> Using cache ---> c69d41aff8a5 Step 14/31 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Using cache ---> da0b7cbb153b Step 15/31 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list ---> Running in 80ac732a083e deb http://packages.ros.org/ros/ubuntu bionic main ---> f49801f6a2a3 Removing intermediate container 80ac732a083e Step 16/31 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) ---> Running in 24a3abea069a ---> 2e28e448a287 Removing intermediate container 24a3abea069a Step 17/31 : RUN mkdir /tmp/wrapper_scripts ---> Running in 9033bf9bf4a9 ---> 1e2c235c2b2f Removing intermediate container 9033bf9bf4a9 Step 18/31 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py ---> Running in f32de54a7a18 ---> 7c0f82cb0065 Removing intermediate container f32de54a7a18 Step 19/31 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py ---> Running in b738dcf4ab3d ---> d9756e213808 Removing intermediate container b738dcf4ab3d Step 20/31 : RUN echo "2020-06-05 (+0000)" ---> Running in 29c5265853c4 2020-06-05 (+0000) ---> 4a69804f4be2 Removing intermediate container 29c5265853c4 Step 21/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done ---> Running in 82939053237d Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Get:3 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] Get:7 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [159 kB] Get:8 http://packages.ros.org/ros/ubuntu bionic InRelease [4,669 B] Get:9 http://archive.ubuntu.com/ubuntu bionic/multiverse Sources [216 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Sources [7,152 B] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,387 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1,230 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-security/multiverse Sources [3,232 B] Get:14 http://archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [8,815 B] Get:15 http://packages.ros.org/ros/ubuntu bionic/main amd64 Packages [672 kB] Fetched 4,032 kB in 2s (1,842 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3-minimal python3.6 python3.6-minimal xz-utils Suggested packages: python3-doc python3-tk python3-venv python3.6-venv python3.6-doc binutils binfmt-support The following NEW packages will be installed: file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib libpython3.6-minimal libpython3.6-stdlib mime-support python3 python3-minimal python3.6 python3.6-minimal xz-utils 0 upgraded, 14 newly installed, 0 to remove and 4 not upgraded. Need to get 4,687 kB of archives. After this operation, 28.3 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04ubuntu1 [533 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04ubuntu1 [1,609 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 mime-support all 3.60ubuntu1 [30.1 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04ubuntu1 [1,710 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04ubuntu1 [203 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7,240 B] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.4 [184 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.4 [68.6 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 file amd64 1:5.32-2ubuntu0.4 [22.1 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xz-utils amd64 5.2.2-1.3 [83.8 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 4,687 kB in 0s (28.1 MB/s) Selecting previously unselected package libpython3.6-minimal:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5006 files and directories currently installed.) Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package libexpat1:amd64. Preparing to unpack .../libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Selecting previously unselected package python3.6-minimal. Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking python3.6-minimal (3.6.9-1~18.04ubuntu1) ... Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1) ... Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... Setting up python3.6-minimal (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package python3-minimal. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5253 files and directories currently installed.) Preparing to unpack .../0-python3-minimal_3.6.7-1~18.04_amd64.deb ... Unpacking python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package mime-support. Preparing to unpack .../1-mime-support_3.60ubuntu1_all.deb ... Unpacking mime-support (3.60ubuntu1) ... Selecting previously unselected package libmpdec2:amd64. Preparing to unpack .../2-libmpdec2_2.4.2-1ubuntu1_amd64.deb ... Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ... Selecting previously unselected package libpython3.6-stdlib:amd64. Preparing to unpack .../3-libpython3.6-stdlib_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package python3.6. Preparing to unpack .../4-python3.6_3.6.9-1~18.04ubuntu1_amd64.deb ... Unpacking python3.6 (3.6.9-1~18.04ubuntu1) ... Selecting previously unselected package libpython3-stdlib:amd64. Preparing to unpack .../5-libpython3-stdlib_3.6.7-1~18.04_amd64.deb ... Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3-minimal (3.6.7-1~18.04) ... Selecting previously unselected package python3. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5683 files and directories currently installed.) Preparing to unpack .../python3_3.6.7-1~18.04_amd64.deb ... Unpacking python3 (3.6.7-1~18.04) ... Selecting previously unselected package libmagic-mgc. Preparing to unpack .../libmagic-mgc_1%3a5.32-2ubuntu0.4_amd64.deb ... Unpacking libmagic-mgc (1:5.32-2ubuntu0.4) ... Selecting previously unselected package libmagic1:amd64. Preparing to unpack .../libmagic1_1%3a5.32-2ubuntu0.4_amd64.deb ... Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.4) ... Selecting previously unselected package file. Preparing to unpack .../file_1%3a5.32-2ubuntu0.4_amd64.deb ... Unpacking file (1:5.32-2ubuntu0.4) ... Selecting previously unselected package xz-utils. Preparing to unpack .../xz-utils_5.2.2-1.3_amd64.deb ... Unpacking xz-utils (5.2.2-1.3) ... Setting up mime-support (3.60ubuntu1) ... Setting up libmagic-mgc (1:5.32-2ubuntu0.4) ... Setting up libmagic1:amd64 (1:5.32-2ubuntu0.4) ... Setting up xz-utils (5.2.2-1.3) ... update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ... Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1) ... Setting up python3.6 (3.6.9-1~18.04ubuntu1) ... Setting up file (1:5.32-2ubuntu0.4) ... Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ... Setting up python3 (3.6.7-1~18.04) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... ---> 1d175604010e Removing intermediate container 82939053237d Step 22/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python ---> Running in 060d5dbc1f78 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease Reading package lists... Invoking 'apt-get install -q -y dh-python' Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: python3-distutils python3-lib2to3 Suggested packages: libdpkg-perl dpkg-dev The following NEW packages will be installed: dh-python python3-distutils python3-lib2to3 0 upgraded, 3 newly installed, 0 to remove and 4 not upgraded. Need to get 311 kB of archives. After this operation, 3,582 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-python all 3.20180325ubuntu2 [89.2 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 311 kB in 0s (4,737 kB/s) Selecting previously unselected package python3-lib2to3. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5787 files and directories currently installed.) Preparing to unpack .../python3-lib2to3_3.6.9-1~18.04_all.deb ... Unpacking python3-lib2to3 (3.6.9-1~18.04) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../python3-distutils_3.6.9-1~18.04_all.deb ... Unpacking python3-distutils (3.6.9-1~18.04) ... Selecting previously unselected package dh-python. Preparing to unpack .../dh-python_3.20180325ubuntu2_all.deb ... Unpacking dh-python (3.20180325ubuntu2) ... Setting up python3-lib2to3 (3.6.9-1~18.04) ... Setting up python3-distutils (3.6.9-1~18.04) ... Setting up dh-python (3.20180325ubuntu2) ... Invoking 'apt-get clean' ---> 8a5fa0e1108b Removing intermediate container 060d5dbc1f78 Step 23/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential ---> Running in e8b12d4e9795 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y ccache gcc build-essential' Reading package lists... Building dependency tree... Reading state information... The following additional packages will be installed: binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 dpkg-dev fakeroot g++ g++-7 gcc-7 gcc-7-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan4 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4 libgdbm5 libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3 libmpfr6 libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0 linux-libc-dev make manpages manpages-dev netbase patch perl perl-modules-5.26 Suggested packages: binutils-doc distcc cpp-doc gcc-7-locales debian-keyring g++-multilib g++-7-multilib gcc-7-doc libstdc++6-7-dbg gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg glibc-doc git bzr gdbm-l10n libstdc++-7-doc make-doc man-browser ed diffutils-doc perl-doc libterm-readline-gnu-perl | libterm-readline-perl-perl The following NEW packages will be installed: binutils binutils-common binutils-x86-64-linux-gnu build-essential ccache cpp cpp-7 dpkg-dev fakeroot g++ g++-7 gcc gcc-7 gcc-7-base libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan4 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4 libgdbm5 libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3 libmpfr6 libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0 linux-libc-dev make manpages manpages-dev netbase patch perl perl-modules-5.26 0 upgraded, 51 newly installed, 0 to remove and 4 not upgraded. Need to get 51.2 MB of archives. After this operation, 210 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.3 [2,763 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6,084 B] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.3 [3,527 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.3 [201 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages all 4.15-1 [1,234 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.3 [196 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.3 [488 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.3 [1,839 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.3 [3,388 B] Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc-dev-bin amd64 2.27-3ubuntu1 [71.8 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-101.102 [994 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc6-dev amd64 2.27-3ubuntu1 [2,587 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.5.0-3ubuntu1~18.04 [18.3 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr6 amd64 4.0.1-1 [243 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.5.0-3ubuntu1~18.04 [8,591 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.4.0-1ubuntu1~18.04 [39.4 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.4.0-1ubuntu1~18.04 [76.5 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.4.0-1ubuntu1~18.04 [27.9 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.4.0-1ubuntu1~18.04 [9,192 B] Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.5.0-3ubuntu1~18.04 [358 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.4.0-1ubuntu1~18.04 [133 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.4.0-1ubuntu1~18.04 [288 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.5.0-3ubuntu1~18.04 [126 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.5.0-3ubuntu1~18.04 [42.5 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.4.0-1ubuntu1~18.04 [11.6 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.4.0-1ubuntu1~18.04 [134 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.5.0-3ubuntu1~18.04 [2,378 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.5.0-3ubuntu1~18.04 [9,381 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5,184 B] Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.5.0-3ubuntu1~18.04 [1,471 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.5.0-3ubuntu1~18.04 [9,697 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1,568 B] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4,758 B] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 ccache amd64 3.4.1-1 [110 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2,217 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 51.2 MB in 1s (47.1 MB/s) Selecting previously unselected package liblocale-gettext-perl. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6240 files and directories currently installed.) Preparing to unpack .../00-liblocale-gettext-perl_1.07-3build2_amd64.deb ... Unpacking liblocale-gettext-perl (1.07-3build2) ... Selecting previously unselected package perl-modules-5.26. Preparing to unpack .../01-perl-modules-5.26_5.26.1-6ubuntu0.3_all.deb ... Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package libgdbm5:amd64. Preparing to unpack .../02-libgdbm5_1.14.1-6_amd64.deb ... Unpacking libgdbm5:amd64 (1.14.1-6) ... Selecting previously unselected package libgdbm-compat4:amd64. Preparing to unpack .../03-libgdbm-compat4_1.14.1-6_amd64.deb ... Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... Selecting previously unselected package libperl5.26:amd64. Preparing to unpack .../04-libperl5.26_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Selecting previously unselected package perl. Preparing to unpack .../05-perl_5.26.1-6ubuntu0.3_amd64.deb ... Unpacking perl (5.26.1-6ubuntu0.3) ... Selecting previously unselected package netbase. Preparing to unpack .../06-netbase_5.4_all.deb ... Unpacking netbase (5.4) ... Selecting previously unselected package manpages. Preparing to unpack .../07-manpages_4.15-1_all.deb ... Unpacking manpages (4.15-1) ... Selecting previously unselected package binutils-common:amd64. Preparing to unpack .../08-binutils-common_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package libbinutils:amd64. Preparing to unpack .../09-libbinutils_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package binutils-x86-64-linux-gnu. Preparing to unpack .../10-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package binutils. Preparing to unpack .../11-binutils_2.30-21ubuntu1~18.04.3_amd64.deb ... Unpacking binutils (2.30-21ubuntu1~18.04.3) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../12-libc-dev-bin_2.27-3ubuntu1_amd64.deb ... Unpacking libc-dev-bin (2.27-3ubuntu1) ... Selecting previously unselected package linux-libc-dev:amd64. Preparing to unpack .../13-linux-libc-dev_4.15.0-101.102_amd64.deb ... Unpacking linux-libc-dev:amd64 (4.15.0-101.102) ... Selecting previously unselected package libc6-dev:amd64. Preparing to unpack .../14-libc6-dev_2.27-3ubuntu1_amd64.deb ... Unpacking libc6-dev:amd64 (2.27-3ubuntu1) ... Selecting previously unselected package gcc-7-base:amd64. Preparing to unpack .../15-gcc-7-base_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package libisl19:amd64. Preparing to unpack .../16-libisl19_0.19-1_amd64.deb ... Unpacking libisl19:amd64 (0.19-1) ... Selecting previously unselected package libmpfr6:amd64. Preparing to unpack .../17-libmpfr6_4.0.1-1_amd64.deb ... Unpacking libmpfr6:amd64 (4.0.1-1) ... Selecting previously unselected package libmpc3:amd64. Preparing to unpack .../18-libmpc3_1.1.0-1_amd64.deb ... Unpacking libmpc3:amd64 (1.1.0-1) ... Selecting previously unselected package cpp-7. Preparing to unpack .../19-cpp-7_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking cpp-7 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package cpp. Preparing to unpack .../20-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking cpp (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libcc1-0:amd64. Preparing to unpack .../21-libcc1-0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libgomp1:amd64. Preparing to unpack .../22-libgomp1_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libitm1:amd64. Preparing to unpack .../23-libitm1_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libatomic1:amd64. Preparing to unpack .../24-libatomic1_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libasan4:amd64. Preparing to unpack .../25-libasan4_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package liblsan0:amd64. Preparing to unpack .../26-liblsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libtsan0:amd64. Preparing to unpack .../27-libtsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libubsan0:amd64. Preparing to unpack .../28-libubsan0_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package libcilkrts5:amd64. Preparing to unpack .../29-libcilkrts5_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package libmpx2:amd64. Preparing to unpack .../30-libmpx2_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libquadmath0:amd64. Preparing to unpack .../31-libquadmath0_8.4.0-1ubuntu1~18.04_amd64.deb ... Unpacking libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... Selecting previously unselected package libgcc-7-dev:amd64. Preparing to unpack .../32-libgcc-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package gcc-7. Preparing to unpack .../33-gcc-7_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking gcc-7 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package gcc. Preparing to unpack .../34-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking gcc (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package libstdc++-7-dev:amd64. Preparing to unpack .../35-libstdc++-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package g++-7. Preparing to unpack .../36-g++-7_7.5.0-3ubuntu1~18.04_amd64.deb ... Unpacking g++-7 (7.5.0-3ubuntu1~18.04) ... Selecting previously unselected package g++. Preparing to unpack .../37-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ... Unpacking g++ (4:7.4.0-1ubuntu2.3) ... Selecting previously unselected package make. Preparing to unpack .../38-make_4.1-9.1ubuntu1_amd64.deb ... Unpacking make (4.1-9.1ubuntu1) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../39-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ... Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ... Selecting previously unselected package patch. Preparing to unpack .../40-patch_2.7.6-2ubuntu1.1_amd64.deb ... Unpacking patch (2.7.6-2ubuntu1.1) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../41-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ... Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ... Selecting previously unselected package build-essential. Preparing to unpack .../42-build-essential_12.4ubuntu1_amd64.deb ... Unpacking build-essential (12.4ubuntu1) ... Selecting previously unselected package ccache. Preparing to unpack .../43-ccache_3.4.1-1_amd64.deb ... Unpacking ccache (3.4.1-1) ... Selecting previously unselected package libfakeroot:amd64. Preparing to unpack .../44-libfakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../45-fakeroot_1.22-2ubuntu1_amd64.deb ... Unpacking fakeroot (1.22-2ubuntu1) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../46-libalgorithm-diff-perl_1.19.03-1_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-1) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../47-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-5) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../48-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../49-libfile-fcntllock-perl_0.22-3build2_amd64.deb ... Unpacking libfile-fcntllock-perl (0.22-3build2) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../50-manpages-dev_4.15-1_all.deb ... Unpacking manpages-dev (4.15-1) ... Setting up libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up manpages (4.15-1) ... Setting up libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up ccache (3.4.1-1) ... Updating symlinks in /usr/lib/ccache ... Setting up make (4.1-9.1ubuntu1) ... Setting up libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up linux-libc-dev:amd64 (4.15.0-101.102) ... Setting up libmpfr6:amd64 (4.0.1-1) ... Setting up perl-modules-5.26 (5.26.1-6ubuntu0.3) ... Setting up libgdbm5:amd64 (1.14.1-6) ... Setting up liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.3) ... Setting up libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up patch (2.7.6-2ubuntu1.1) ... Setting up libfakeroot:amd64 (1.22-2ubuntu1) ... Setting up liblocale-gettext-perl (1.07-3build2) ... Setting up libmpc3:amd64 (1.1.0-1) ... Setting up libc-dev-bin (2.27-3ubuntu1) ... Setting up libgdbm-compat4:amd64 (1.14.1-6) ... Setting up manpages-dev (4.15-1) ... Setting up libc6-dev:amd64 (2.27-3ubuntu1) ... Setting up libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... Setting up netbase (5.4) ... Setting up libisl19:amd64 (0.19-1) ... Setting up libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.3) ... Setting up libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up fakeroot (1.22-2ubuntu1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist Setting up libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up cpp-7 (7.5.0-3ubuntu1~18.04) ... Setting up libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.3) ... Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.3) ... Setting up cpp (4:7.4.0-1ubuntu2.3) ... Setting up perl (5.26.1-6ubuntu0.3) ... Setting up libfile-fcntllock-perl (0.22-3build2) ... Setting up libalgorithm-diff-perl (1.19.03-1) ... Setting up binutils (2.30-21ubuntu1~18.04.3) ... Setting up gcc-7 (7.5.0-3ubuntu1~18.04) ... Setting up g++-7 (7.5.0-3ubuntu1~18.04) ... Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ... Setting up gcc (4:7.4.0-1ubuntu2.3) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up dpkg-dev (1.19.0.5ubuntu2.3) ... Setting up libalgorithm-diff-xs-perl (0.04-5) ... Setting up g++ (4:7.4.0-1ubuntu2.3) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist Setting up build-essential (12.4ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Invoking 'apt-get clean' ---> 8f92f6c74331 Removing intermediate container e8b12d4e9795 Step 24/31 : RUN echo "apt-src: 0.25.2" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper ---> Running in 5aacd101f5e7 apt-src: 0.25.2 debhelper: 12.1.1ubuntu1~ubuntu18.04.1 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libapt-pkg-perl libarchive-cpio-perl libarchive-zip-perl libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14 libpipeline1 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix shared-mime-info sudo xdg-user-dirs Suggested packages: autoconf-archive gnu-standards autoconf-doc wamerican | wordlist whois vacation dh-make dwz gettext-doc libasprintf-dev libgettextpo-dev groff krb5-doc krb5-user libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc apparmor less www-browser libmail-box-perl The following NEW packages will be installed: apt-src autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl debhelper dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base intltool-debian krb5-locales libapt-pkg-perl libarchive-cpio-perl libarchive-zip-perl libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14 libpipeline1 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix shared-mime-info sudo xdg-user-dirs 0 upgraded, 51 newly installed, 0 to remove and 4 not upgraded. Need to get 20.0 MB of archives. After this operation, 72.7 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.6 [614 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates all 20190110~18.04.1 [146 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.6 [1,171 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.6 [4,540 B] Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu60 amd64 60.2-3ubuntu3.1 [8,054 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.3 [663 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.2 [427 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.1 [13.5 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.1 [30.9 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.1 [85.6 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B] Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.1 [279 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.1 [122 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapt-pkg-perl amd64 0.1.33build1 [68.0 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/universe amd64 apt-src all 0.25.2 [31.1 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsigsegv2 amd64 2.12-1 [14.7 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 m4 amd64 1.4.18-1 [197 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 autoconf all 2.69-11 [322 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 autotools-dev all 20180224.1 [39.6 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 automake all 1:1.15.1-3ubuntu2 [509 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 autopoint all 0.19.8.1-6ubuntu0.3 [426 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.8 [214 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.8 [159 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtool all 2.4.6-2 [194 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-autoreconf all 17 [15.8 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-stripnondeterminism-perl all 0.040-1.1~build1 [13.8 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-strip-nondeterminism all 0.040-1.1~build1 [5,208 B] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 po-debconf all 1.0.20 [232 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 debhelper all 11.1.6ubuntu2 [902 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libarchive-cpio-perl all 0.10-1 [9,644 B] Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl7 amd64 2.4.6-2 [38.8 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl-dev amd64 2.4.6-2 [162 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmail-sendmail-perl all 0.80-1 [22.6 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 20.0 MB in 1s (38.0 MB/s) Selecting previously unselected package libbsd0:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13954 files and directories currently installed.) Preparing to unpack .../00-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Selecting previously unselected package bsdmainutils. Preparing to unpack .../01-bsdmainutils_11.1.2ubuntu1_amd64.deb ... Unpacking bsdmainutils (11.1.2ubuntu1) ... Selecting previously unselected package groff-base. Preparing to unpack .../02-groff-base_1.22.3-10_amd64.deb ... Unpacking groff-base (1.22.3-10) ... Selecting previously unselected package libpipeline1:amd64. Preparing to unpack .../03-libpipeline1_1.5.0-1_amd64.deb ... Unpacking libpipeline1:amd64 (1.5.0-1) ... Selecting previously unselected package man-db. Preparing to unpack .../04-man-db_2.8.3-2ubuntu0.1_amd64.deb ... Unpacking man-db (2.8.3-2ubuntu0.1) ... Selecting previously unselected package openssl. Preparing to unpack .../05-openssl_1.1.1-1ubuntu2.1~18.04.6_amd64.deb ... Unpacking openssl (1.1.1-1ubuntu2.1~18.04.6) ... Selecting previously unselected package ca-certificates. Preparing to unpack .../06-ca-certificates_20190110~18.04.1_all.deb ... Unpacking ca-certificates (20190110~18.04.1) ... Selecting previously unselected package libglib2.0-0:amd64. Preparing to unpack .../07-libglib2.0-0_2.56.4-0ubuntu0.18.04.6_amd64.deb ... Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../08-libglib2.0-data_2.56.4-0ubuntu0.18.04.6_all.deb ... Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libicu60:amd64. Preparing to unpack .../09-libicu60_60.2-3ubuntu3.1_amd64.deb ... Unpacking libicu60:amd64 (60.2-3ubuntu3.1) ... Selecting previously unselected package libxml2:amd64. Preparing to unpack .../10-libxml2_2.9.4+dfsg1-6.1ubuntu1.3_amd64.deb ... Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../11-shared-mime-info_1.9-2_amd64.deb ... Unpacking shared-mime-info (1.9-2) ... Selecting previously unselected package sudo. Preparing to unpack .../12-sudo_1.8.21p2-3ubuntu1.2_amd64.deb ... Unpacking sudo (1.8.21p2-3ubuntu1.2) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../13-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ... Unpacking xdg-user-dirs (0.17-1ubuntu1) ... Selecting previously unselected package gettext-base. Preparing to unpack .../14-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package krb5-locales. Preparing to unpack .../15-krb5-locales_1.16-2ubuntu0.1_all.deb ... Unpacking krb5-locales (1.16-2ubuntu0.1) ... Selecting previously unselected package libkrb5support0:amd64. Preparing to unpack .../16-libkrb5support0_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libk5crypto3:amd64. Preparing to unpack .../17-libk5crypto3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libkeyutils1:amd64. Preparing to unpack .../18-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Selecting previously unselected package libkrb5-3:amd64. Preparing to unpack .../19-libkrb5-3_1.16-2ubuntu0.1_amd64.deb ... Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libgssapi-krb5-2:amd64. Preparing to unpack .../20-libgssapi-krb5-2_1.16-2ubuntu0.1_amd64.deb ... Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Selecting previously unselected package libpsl5:amd64. Preparing to unpack .../21-libpsl5_0.19.1-5build1_amd64.deb ... Unpacking libpsl5:amd64 (0.19.1-5build1) ... Selecting previously unselected package publicsuffix. Preparing to unpack .../22-publicsuffix_20180223.1310-1_all.deb ... Unpacking publicsuffix (20180223.1310-1) ... Selecting previously unselected package libapt-pkg-perl. Preparing to unpack .../23-libapt-pkg-perl_0.1.33build1_amd64.deb ... Unpacking libapt-pkg-perl (0.1.33build1) ... Selecting previously unselected package apt-src. Preparing to unpack .../24-apt-src_0.25.2_all.deb ... Unpacking apt-src (0.25.2) ... Selecting previously unselected package libsigsegv2:amd64. Preparing to unpack .../25-libsigsegv2_2.12-1_amd64.deb ... Unpacking libsigsegv2:amd64 (2.12-1) ... Selecting previously unselected package m4. Preparing to unpack .../26-m4_1.4.18-1_amd64.deb ... Unpacking m4 (1.4.18-1) ... Selecting previously unselected package autoconf. Preparing to unpack .../27-autoconf_2.69-11_all.deb ... Unpacking autoconf (2.69-11) ... Selecting previously unselected package autotools-dev. Preparing to unpack .../28-autotools-dev_20180224.1_all.deb ... Unpacking autotools-dev (20180224.1) ... Selecting previously unselected package automake. Preparing to unpack .../29-automake_1%3a1.15.1-3ubuntu2_all.deb ... Unpacking automake (1:1.15.1-3ubuntu2) ... Selecting previously unselected package autopoint. Preparing to unpack .../30-autopoint_0.19.8.1-6ubuntu0.3_all.deb ... Unpacking autopoint (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package libnghttp2-14:amd64. Preparing to unpack .../31-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Selecting previously unselected package librtmp1:amd64. Preparing to unpack .../32-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Selecting previously unselected package libcurl4:amd64. Preparing to unpack .../33-libcurl4_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Selecting previously unselected package curl. Preparing to unpack .../34-curl_7.58.0-2ubuntu3.8_amd64.deb ... Unpacking curl (7.58.0-2ubuntu3.8) ... Selecting previously unselected package libtool. Preparing to unpack .../35-libtool_2.4.6-2_all.deb ... Unpacking libtool (2.4.6-2) ... Selecting previously unselected package dh-autoreconf. Preparing to unpack .../36-dh-autoreconf_17_all.deb ... Unpacking dh-autoreconf (17) ... Selecting previously unselected package libarchive-zip-perl. Preparing to unpack .../37-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ... Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ... Selecting previously unselected package libfile-stripnondeterminism-perl. Preparing to unpack .../38-libfile-stripnondeterminism-perl_0.040-1.1~build1_all.deb ... Unpacking libfile-stripnondeterminism-perl (0.040-1.1~build1) ... Selecting previously unselected package libtimedate-perl. Preparing to unpack .../39-libtimedate-perl_2.3000-2_all.deb ... Unpacking libtimedate-perl (2.3000-2) ... Selecting previously unselected package dh-strip-nondeterminism. Preparing to unpack .../40-dh-strip-nondeterminism_0.040-1.1~build1_all.deb ... Unpacking dh-strip-nondeterminism (0.040-1.1~build1) ... Selecting previously unselected package libcroco3:amd64. Preparing to unpack .../41-libcroco3_0.6.12-2_amd64.deb ... Unpacking libcroco3:amd64 (0.6.12-2) ... Selecting previously unselected package gettext. Preparing to unpack .../42-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ... Unpacking gettext (0.19.8.1-6ubuntu0.3) ... Selecting previously unselected package intltool-debian. Preparing to unpack .../43-intltool-debian_0.35.0+20060710.4_all.deb ... Unpacking intltool-debian (0.35.0+20060710.4) ... Selecting previously unselected package po-debconf. Preparing to unpack .../44-po-debconf_1.0.20_all.deb ... Unpacking po-debconf (1.0.20) ... Selecting previously unselected package debhelper. Preparing to unpack .../45-debhelper_11.1.6ubuntu2_all.deb ... Unpacking debhelper (11.1.6ubuntu2) ... Selecting previously unselected package libarchive-cpio-perl. Preparing to unpack .../46-libarchive-cpio-perl_0.10-1_all.deb ... Unpacking libarchive-cpio-perl (0.10-1) ... Selecting previously unselected package libltdl7:amd64. Preparing to unpack .../47-libltdl7_2.4.6-2_amd64.deb ... Unpacking libltdl7:amd64 (2.4.6-2) ... Selecting previously unselected package libltdl-dev:amd64. Preparing to unpack .../48-libltdl-dev_2.4.6-2_amd64.deb ... Unpacking libltdl-dev:amd64 (2.4.6-2) ... Selecting previously unselected package libsys-hostname-long-perl. Preparing to unpack .../49-libsys-hostname-long-perl_1.5-1_all.deb ... Unpacking libsys-hostname-long-perl (1.5-1) ... Selecting previously unselected package libmail-sendmail-perl. Preparing to unpack .../50-libmail-sendmail-perl_0.80-1_all.deb ... Unpacking libmail-sendmail-perl (0.80-1) ... Setting up libicu60:amd64 (60.2-3ubuntu3.1) ... Setting up libapt-pkg-perl (0.1.33build1) ... Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ... Setting up apt-src (0.25.2) ... Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... Setting up sudo (1.8.21p2-3ubuntu1.2) ... Setting up libtimedate-perl (2.3000-2) ... Setting up libsigsegv2:amd64 (2.12-1) ... Setting up libpsl5:amd64 (0.19.1-5build1) ... Setting up groff-base (1.22.3-10) ... Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... No schema files found: doing nothing. Setting up libarchive-cpio-perl (0.10-1) ... Setting up gettext-base (0.19.8.1-6ubuntu0.3) ... Setting up libpipeline1:amd64 (1.5.0-1) ... Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... Setting up m4 (1.4.18-1) ... Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... Setting up libkrb5support0:amd64 (1.16-2ubuntu0.1) ... Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... Setting up libcroco3:amd64 (0.6.12-2) ... Setting up libsys-hostname-long-perl (1.5-1) ... Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... Setting up libmail-sendmail-perl (0.80-1) ... Setting up krb5-locales (1.16-2ubuntu0.1) ... Setting up publicsuffix (20180223.1310-1) ... Setting up autotools-dev (20180224.1) ... Setting up libltdl7:amd64 (2.4.6-2) ... Setting up openssl (1.1.1-1ubuntu2.1~18.04.6) ... Setting up shared-mime-info (1.9-2) ... Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... Setting up bsdmainutils (11.1.2ubuntu1) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/write.1.gz because associated file /usr/share/man/man1/bsd-write.1.gz (of link group write) doesn't exist update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/from.1.gz because associated file /usr/share/man/man1/bsd-from.1.gz (of link group from) doesn't exist Setting up ca-certificates (20190110~18.04.1) ... Updating certificates in /etc/ssl/certs... 127 added, 0 removed; done. Setting up xdg-user-dirs (0.17-1ubuntu1) ... Setting up autopoint (0.19.8.1-6ubuntu0.3) ... Setting up libfile-stripnondeterminism-perl (0.040-1.1~build1) ... Setting up libtool (2.4.6-2) ... Setting up libk5crypto3:amd64 (1.16-2ubuntu0.1) ... Setting up libltdl-dev:amd64 (2.4.6-2) ... Setting up gettext (0.19.8.1-6ubuntu0.3) ... Setting up autoconf (2.69-11) ... Setting up intltool-debian (0.35.0+20060710.4) ... Setting up automake (1:1.15.1-3ubuntu2) ... update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.15.1.gz (of link group automake) doesn't exist update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.15.1.gz (of link group automake) doesn't exist Setting up man-db (2.8.3-2ubuntu0.1) ... Building database of manual pages ... Setting up libkrb5-3:amd64 (1.16-2ubuntu0.1) ... Setting up po-debconf (1.0.20) ... Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ... Setting up libcurl4:amd64 (7.58.0-2ubuntu3.8) ... Setting up curl (7.58.0-2ubuntu3.8) ... Setting up dh-autoreconf (17) ... Setting up debhelper (11.1.6ubuntu2) ... Setting up dh-strip-nondeterminism (0.040-1.1~build1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for ca-certificates (20190110~18.04.1) ... Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done. Running hooks in /etc/ca-certificates/update.d... done. Invoking 'apt-get clean' ---> 09e052b7397c Removing intermediate container 5aacd101f5e7 Step 25/31 : RUN echo "dkms: 2.3-3ubuntu9.7" && echo "framoscamerasuite: 4.2.0.0" && echo "libgl1-mesa-dev: 19.2.8-0ubuntu0~18.04.3" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes dkms framoscamerasuite libgl1-mesa-dev ---> Running in 0f27aecb8c34 dkms: 2.3-3ubuntu9.7 framoscamerasuite: 4.2.0.0 libgl1-mesa-dev: 19.2.8-0ubuntu0~18.04.3 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes dkms framoscamerasuite libgl1-mesa-dev' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: distro-info-data dmsetup efibootmgr grub-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub2-common kmod libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-dev libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libefiboot1 libefivar1 libegl-mesa0 libegl1 libelf-dev libelf1 libfreetype6 libfuse2 libgbm1 libgl1 libgl1-mesa-dri libglapi-mesa libgles1 libgles2 libglvnd-core-dev libglvnd-dev libglvnd0 libglx-mesa0 libglx0 libkmod2 libllvm9 libopengl0 libpciaccess0 libpng16-16 libpopt0 libpthread-stubs0-dev libsensors4 libwayland-client0 libwayland-server0 libx11-6 libx11-data libx11-dev libx11-doc libx11-xcb-dev libx11-xcb1 libxau-dev libxau6 libxcb-dri2-0 libxcb-dri2-0-dev libxcb-dri3-0 libxcb-dri3-dev libxcb-glx0 libxcb-glx0-dev libxcb-present-dev libxcb-present0 libxcb-randr0 libxcb-randr0-dev libxcb-render0 libxcb-render0-dev libxcb-shape0 libxcb-shape0-dev libxcb-sync-dev libxcb-sync1 libxcb-xfixes0 libxcb-xfixes0-dev libxcb1 libxcb1-dev libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3 libxshmfence-dev libxshmfence1 libxxf86vm-dev libxxf86vm1 linux-headers-4.15.0-101 linux-headers-4.15.0-101-generic linux-headers-generic lsb-release mesa-common-dev mokutil multiarch-support os-prober sbsigntool secureboot-db shim shim-signed ucf x11proto-core-dev x11proto-damage-dev x11proto-dev x11proto-fixes-dev x11proto-xext-dev x11proto-xf86vidmode-dev xorg-sgml-doctools xtrans-dev zlib1g-dev Suggested packages: python3-apport menu multiboot-doc grub-emu xorriso desktop-base console-setup fuse pciutils lm-sensors libxcb-doc libxext-doc lsb The following NEW packages will be installed: distro-info-data dkms dmsetup efibootmgr framoscamerasuite grub-common grub-efi-amd64 grub-efi-amd64-bin grub-efi-amd64-signed grub2-common kmod libdevmapper1.02.1 libdrm-amdgpu1 libdrm-common libdrm-dev libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libedit2 libefiboot1 libefivar1 libegl-mesa0 libegl1 libelf-dev libelf1 libfreetype6 libfuse2 libgbm1 libgl1 libgl1-mesa-dev libgl1-mesa-dri libglapi-mesa libgles1 libgles2 libglvnd-core-dev libglvnd-dev libglvnd0 libglx-mesa0 libglx0 libkmod2 libllvm9 libopengl0 libpciaccess0 libpng16-16 libpopt0 libpthread-stubs0-dev libsensors4 libwayland-client0 libwayland-server0 libx11-6 libx11-data libx11-dev libx11-doc libx11-xcb-dev libx11-xcb1 libxau-dev libxau6 libxcb-dri2-0 libxcb-dri2-0-dev libxcb-dri3-0 libxcb-dri3-dev libxcb-glx0 libxcb-glx0-dev libxcb-present-dev libxcb-present0 libxcb-randr0 libxcb-randr0-dev libxcb-render0 libxcb-render0-dev libxcb-shape0 libxcb-shape0-dev libxcb-sync-dev libxcb-sync1 libxcb-xfixes0 libxcb-xfixes0-dev libxcb1 libxcb1-dev libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3 libxshmfence-dev libxshmfence1 libxxf86vm-dev libxxf86vm1 linux-headers-4.15.0-101 linux-headers-4.15.0-101-generic linux-headers-generic lsb-release mesa-common-dev mokutil multiarch-support os-prober sbsigntool secureboot-db shim shim-signed ucf x11proto-core-dev x11proto-damage-dev x11proto-dev x11proto-fixes-dev x11proto-xext-dev x11proto-xf86vidmode-dev xorg-sgml-doctools xtrans-dev zlib1g-dev 0 upgraded, 112 newly installed, 0 to remove and 4 not upgraded. Need to get 60.8 MB of archives. After this operation, 502 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 multiarch-support amd64 2.27-3ubuntu1 [6,916 B] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxau6 amd64 1:1.0.8-1 [8,376 B] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp6 amd64 1:1.1.2-3 [10.7 kB] Get:4 http://10.210.9.154/ubuntu/building bionic/main amd64 framoscamerasuite amd64 4.2.0.0 [13.3 MB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1 amd64 1.13-2~ubuntu18.04 [45.5 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-data all 2:1.6.4-3ubuntu0.2 [113 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-6 amd64 2:1.6.4-3ubuntu0.2 [569 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext6 amd64 2:1.3.3-1 [29.4 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libelf1 amd64 0.170-0.4ubuntu0.1 [44.8 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-0ubuntu2 [176 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libelf-dev amd64 0.170-0.4ubuntu0.1 [57.3 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkmod2 amd64 24-1ubuntu3.4 [40.1 kB] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 kmod amd64 24-1ubuntu3.4 [88.7 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dkms all 2.3-3ubuntu9.7 [68.1 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 shim amd64 15+1533136590.3beb971-0ubuntu1 [575 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdevmapper1.02.1 amd64 2:1.02.145-4.1ubuntu3.18.04.3 [127 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2 [335 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfuse2 amd64 2.9.7-1ubuntu1 [80.9 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 grub-common amd64 2.02-2ubuntu8.15 [1,775 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libefivar1 amd64 34-1 [46.2 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 libefiboot1 amd64 34-1 [23.5 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpopt0 amd64 1.16-11 [26.2 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 efibootmgr amd64 15-1 [28.2 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 grub-efi-amd64-bin amd64 2.02-2ubuntu8.15 [655 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 grub2-common amd64 2.02-2ubuntu8.15 [532 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 grub-efi-amd64 amd64 2.02-2ubuntu8.15 [47.8 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 grub-efi-amd64-signed amd64 1.93.16+2.02-2ubuntu8.15 [299 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 mokutil amd64 0.3.0+1538710437.fb6250f-0ubuntu2~18.04.1 [22.3 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 sbsigntool amd64 0.6-3.2ubuntu2 [59.4 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 shim-signed amd64 1.37~18.04.3+15+1533136590.3beb971-0ubuntu1 [344 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxxf86vm1 amd64 1:1.1.4-1 [10.6 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 distro-info-data all 0.37ubuntu0.7 [4,676 B] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dmsetup amd64 2:1.02.145-4.1ubuntu3.18.04.3 [74.4 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 lsb-release all 9.20170808ubuntu1 [11.0 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-common all 2.4.99-1ubuntu1~18.04.2 [5,328 B] Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm2 amd64 2.4.99-1ubuntu1~18.04.2 [31.7 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-amdgpu1 amd64 2.4.99-1ubuntu1~18.04.2 [18.2 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpciaccess0 amd64 0.14-1 [17.9 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-intel1 amd64 2.4.99-1ubuntu1~18.04.2 [59.9 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-radeon1 amd64 2.4.99-1ubuntu1~18.04.2 [21.7 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-nouveau2 amd64 2.4.99-1ubuntu1~18.04.2 [16.5 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdrm-dev amd64 2.4.99-1ubuntu1~18.04.2 [125 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-server0 amd64 1.16.0-1ubuntu1.1~18.04.3 [29.6 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgbm1 amd64 19.2.8-0ubuntu0~18.04.3 [28.1 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglapi-mesa amd64 19.2.8-0ubuntu0~18.04.3 [26.5 kB] Get:49 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-client0 amd64 1.16.0-1ubuntu1.1~18.04.3 [23.6 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-xcb1 amd64 2:1.6.4-3ubuntu0.2 [9,376 B] Get:51 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri2-0 amd64 1.13-2~ubuntu18.04 [6,920 B] Get:52 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri3-0 amd64 1.13-2~ubuntu18.04 [6,568 B] Get:53 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-present0 amd64 1.13-2~ubuntu18.04 [5,552 B] Get:54 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-sync1 amd64 1.13-2~ubuntu18.04 [8,808 B] Get:55 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-xfixes0 amd64 1.13-2~ubuntu18.04 [9,352 B] Get:56 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxshmfence1 amd64 1.3-1 [5,028 B] Get:57 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libegl-mesa0 amd64 19.2.8-0ubuntu0~18.04.3 [95.1 kB] Get:58 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libllvm9 amd64 1:9-2~ubuntu18.04.2 [14.8 MB] Get:59 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsensors4 amd64 1:3.4.0-4 [28.8 kB] Get:60 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgl1-mesa-dri amd64 19.2.8-0ubuntu0~18.04.3 [8,811 kB] Get:61 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglvnd0 amd64 1.0.0-2ubuntu2.3 [47.0 kB] Get:62 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgles1 amd64 1.0.0-2ubuntu2.3 [11.2 kB] Get:63 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-glx0 amd64 1.13-2~ubuntu18.04 [22.1 kB] Get:64 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdamage1 amd64 1:1.1.4-3 [6,934 B] Get:65 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxfixes3 amd64 1:5.0.3-1 [10.8 kB] Get:66 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglx-mesa0 amd64 19.2.8-0ubuntu0~18.04.3 [139 kB] Get:67 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpthread-stubs0-dev amd64 0.3-4 [4,068 B] Get:68 http://archive.ubuntu.com/ubuntu bionic/main amd64 xorg-sgml-doctools all 1:1.11-1 [12.9 kB] Get:69 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-dev all 2018.4-4 [251 kB] Get:70 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-core-dev all 2018.4-4 [2,620 B] Get:71 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxau-dev amd64 1:1.0.8-1 [11.1 kB] Get:72 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdmcp-dev amd64 1:1.1.2-3 [25.1 kB] Get:73 http://archive.ubuntu.com/ubuntu bionic/main amd64 xtrans-dev all 1.3.5-1 [70.5 kB] Get:74 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb1-dev amd64 1.13-2~ubuntu18.04 [80.0 kB] Get:75 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-dev amd64 2:1.6.4-3ubuntu0.2 [640 kB] Get:76 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-doc all 2:1.6.4-3ubuntu0.2 [2,065 kB] Get:77 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libx11-xcb-dev amd64 2:1.6.4-3ubuntu0.2 [9,756 B] Get:78 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri2-0-dev amd64 1.13-2~ubuntu18.04 [8,472 B] Get:79 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-dri3-dev amd64 1.13-2~ubuntu18.04 [7,384 B] Get:80 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-glx0-dev amd64 1.13-2~ubuntu18.04 [27.9 kB] Get:81 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-randr0 amd64 1.13-2~ubuntu18.04 [16.4 kB] Get:82 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-render0 amd64 1.13-2~ubuntu18.04 [14.7 kB] Get:83 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-render0-dev amd64 1.13-2~ubuntu18.04 [18.4 kB] Get:84 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-randr0-dev amd64 1.13-2~ubuntu18.04 [20.4 kB] Get:85 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-shape0 amd64 1.13-2~ubuntu18.04 [5,972 B] Get:86 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-shape0-dev amd64 1.13-2~ubuntu18.04 [7,144 B] Get:87 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-xfixes0-dev amd64 1.13-2~ubuntu18.04 [11.7 kB] Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-sync-dev amd64 1.13-2~ubuntu18.04 [10.6 kB] Get:89 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-present-dev amd64 1.13-2~ubuntu18.04 [6,972 B] Get:90 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-fixes-dev all 1:2018.4-4 [2,620 B] Get:91 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxfixes-dev amd64 1:5.0.3-1 [11.0 kB] Get:92 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-damage-dev all 1:2018.4-4 [2,620 B] Get:93 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxdamage-dev amd64 1:1.1.4-3 [5,028 B] Get:94 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-xext-dev all 2018.4-4 [2,620 B] Get:95 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxext-dev amd64 2:1.3.3-1 [82.1 kB] Get:96 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxshmfence-dev amd64 1.3-1 [3,692 B] Get:97 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-xf86vidmode-dev all 2018.4-4 [2,632 B] Get:98 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxxf86vm-dev amd64 1:1.1.4-1 [13.3 kB] Get:99 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-101 all 4.15.0-101.102 [10.9 MB] Get:100 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-4.15.0-101-generic amd64 4.15.0-101.102 [1,100 kB] Get:101 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-headers-generic amd64 4.15.0.101.91 [2,424 B] Get:102 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 mesa-common-dev amd64 19.2.8-0ubuntu0~18.04.3 [651 kB] Get:103 http://archive.ubuntu.com/ubuntu bionic/main amd64 os-prober amd64 1.74ubuntu1 [19.8 kB] Get:104 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 secureboot-db amd64 1.4~ubuntu0.18.04.1 [8,488 B] Get:105 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libegl1 amd64 1.0.0-2ubuntu2.3 [32.0 kB] Get:106 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglx0 amd64 1.0.0-2ubuntu2.3 [28.1 kB] Get:107 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgl1 amd64 1.0.0-2ubuntu2.3 [86.2 kB] Get:108 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglvnd-core-dev amd64 1.0.0-2ubuntu2.3 [12.8 kB] Get:109 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgles2 amd64 1.0.0-2ubuntu2.3 [17.3 kB] Get:110 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libopengl0 amd64 1.0.0-2ubuntu2.3 [31.3 kB] Get:111 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglvnd-dev amd64 1.0.0-2ubuntu2.3 [3,416 B] Get:112 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgl1-mesa-dev amd64 19.2.8-0ubuntu0~18.04.3 [6,180 B] debconf: delaying package configuration, since apt-utils is not installed Fetched 60.8 MB in 1s (45.6 MB/s) Selecting previously unselected package multiarch-support. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 16736 files and directories currently installed.) Preparing to unpack .../multiarch-support_2.27-3ubuntu1_amd64.deb ... Unpacking multiarch-support (2.27-3ubuntu1) ... Setting up multiarch-support (2.27-3ubuntu1) ... Selecting previously unselected package libxau6:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 16739 files and directories currently installed.) Preparing to unpack .../00-libxau6_1%3a1.0.8-1_amd64.deb ... Unpacking libxau6:amd64 (1:1.0.8-1) ... Selecting previously unselected package libxdmcp6:amd64. Preparing to unpack .../01-libxdmcp6_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp6:amd64 (1:1.1.2-3) ... Selecting previously unselected package libxcb1:amd64. Preparing to unpack .../02-libxcb1_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb1:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libx11-data. Preparing to unpack .../03-libx11-data_2%3a1.6.4-3ubuntu0.2_all.deb ... Unpacking libx11-data (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libx11-6:amd64. Preparing to unpack .../04-libx11-6_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxext6:amd64. Preparing to unpack .../05-libxext6_2%3a1.3.3-1_amd64.deb ... Unpacking libxext6:amd64 (2:1.3.3-1) ... Selecting previously unselected package libelf1:amd64. Preparing to unpack .../06-libelf1_0.170-0.4ubuntu0.1_amd64.deb ... Unpacking libelf1:amd64 (0.170-0.4ubuntu0.1) ... Selecting previously unselected package zlib1g-dev:amd64. Preparing to unpack .../07-zlib1g-dev_1%3a1.2.11.dfsg-0ubuntu2_amd64.deb ... Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ... Selecting previously unselected package libelf-dev:amd64. Preparing to unpack .../08-libelf-dev_0.170-0.4ubuntu0.1_amd64.deb ... Unpacking libelf-dev:amd64 (0.170-0.4ubuntu0.1) ... Selecting previously unselected package libkmod2:amd64. Preparing to unpack .../09-libkmod2_24-1ubuntu3.4_amd64.deb ... Unpacking libkmod2:amd64 (24-1ubuntu3.4) ... Selecting previously unselected package kmod. Preparing to unpack .../10-kmod_24-1ubuntu3.4_amd64.deb ... Unpacking kmod (24-1ubuntu3.4) ... Selecting previously unselected package dkms. Preparing to unpack .../11-dkms_2.3-3ubuntu9.7_all.deb ... Unpacking dkms (2.3-3ubuntu9.7) ... Selecting previously unselected package shim. Preparing to unpack .../12-shim_15+1533136590.3beb971-0ubuntu1_amd64.deb ... Unpacking shim (15+1533136590.3beb971-0ubuntu1) ... Selecting previously unselected package libdevmapper1.02.1:amd64. Preparing to unpack .../13-libdevmapper1.02.1_2%3a1.02.145-4.1ubuntu3.18.04.3_amd64.deb ... Unpacking libdevmapper1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.3) ... Selecting previously unselected package libpng16-16:amd64. Preparing to unpack .../14-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ... Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Selecting previously unselected package libfreetype6:amd64. Preparing to unpack .../15-libfreetype6_2.8.1-2ubuntu2_amd64.deb ... Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2) ... Selecting previously unselected package libfuse2:amd64. Preparing to unpack .../16-libfuse2_2.9.7-1ubuntu1_amd64.deb ... Unpacking libfuse2:amd64 (2.9.7-1ubuntu1) ... Selecting previously unselected package grub-common. Preparing to unpack .../17-grub-common_2.02-2ubuntu8.15_amd64.deb ... Unpacking grub-common (2.02-2ubuntu8.15) ... Selecting previously unselected package libefivar1:amd64. Preparing to unpack .../18-libefivar1_34-1_amd64.deb ... Unpacking libefivar1:amd64 (34-1) ... Selecting previously unselected package libefiboot1:amd64. Preparing to unpack .../19-libefiboot1_34-1_amd64.deb ... Unpacking libefiboot1:amd64 (34-1) ... Selecting previously unselected package libpopt0:amd64. Preparing to unpack .../20-libpopt0_1.16-11_amd64.deb ... Unpacking libpopt0:amd64 (1.16-11) ... Selecting previously unselected package efibootmgr. Preparing to unpack .../21-efibootmgr_15-1_amd64.deb ... Unpacking efibootmgr (15-1) ... Selecting previously unselected package grub-efi-amd64-bin. Preparing to unpack .../22-grub-efi-amd64-bin_2.02-2ubuntu8.15_amd64.deb ... Unpacking grub-efi-amd64-bin (2.02-2ubuntu8.15) ... Selecting previously unselected package grub2-common. Preparing to unpack .../23-grub2-common_2.02-2ubuntu8.15_amd64.deb ... Unpacking grub2-common (2.02-2ubuntu8.15) ... Selecting previously unselected package ucf. Preparing to unpack .../24-ucf_3.0038_all.deb ... Moving old data out of the way Unpacking ucf (3.0038) ... Selecting previously unselected package grub-efi-amd64. Preparing to unpack .../25-grub-efi-amd64_2.02-2ubuntu8.15_amd64.deb ... Unpacking grub-efi-amd64 (2.02-2ubuntu8.15) ... Selecting previously unselected package grub-efi-amd64-signed. Preparing to unpack .../26-grub-efi-amd64-signed_1.93.16+2.02-2ubuntu8.15_amd64.deb ... Unpacking grub-efi-amd64-signed (1.93.16+2.02-2ubuntu8.15) ... Selecting previously unselected package mokutil. Preparing to unpack .../27-mokutil_0.3.0+1538710437.fb6250f-0ubuntu2~18.04.1_amd64.deb ... Unpacking mokutil (0.3.0+1538710437.fb6250f-0ubuntu2~18.04.1) ... Selecting previously unselected package sbsigntool. Preparing to unpack .../28-sbsigntool_0.6-3.2ubuntu2_amd64.deb ... Unpacking sbsigntool (0.6-3.2ubuntu2) ... Selecting previously unselected package shim-signed. Preparing to unpack .../29-shim-signed_1.37~18.04.3+15+1533136590.3beb971-0ubuntu1_amd64.deb ... Unpacking shim-signed (1.37~18.04.3+15+1533136590.3beb971-0ubuntu1) ... Setting up libelf1:amd64 (0.170-0.4ubuntu0.1) ... Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-0ubuntu2) ... Setting up libelf-dev:amd64 (0.170-0.4ubuntu0.1) ... Setting up libkmod2:amd64 (24-1ubuntu3.4) ... Setting up kmod (24-1ubuntu3.4) ... Setting up dkms (2.3-3ubuntu9.7) ... Setting up shim (15+1533136590.3beb971-0ubuntu1) ... Setting up libdevmapper1.02.1:amd64 (2:1.02.145-4.1ubuntu3.18.04.3) ... Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... Setting up libfreetype6:amd64 (2.8.1-2ubuntu2) ... Setting up libfuse2:amd64 (2.9.7-1ubuntu1) ... Setting up grub-common (2.02-2ubuntu8.15) ... update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up libefivar1:amd64 (34-1) ... Setting up libefiboot1:amd64 (34-1) ... Setting up libpopt0:amd64 (1.16-11) ... Setting up efibootmgr (15-1) ... Setting up grub-efi-amd64-bin (2.02-2ubuntu8.15) ... Setting up grub2-common (2.02-2ubuntu8.15) ... Setting up ucf (3.0038) ... Setting up grub-efi-amd64 (2.02-2ubuntu8.15) ... Creating config file /etc/default/grub with new version Setting up grub-efi-amd64-signed (1.93.16+2.02-2ubuntu8.15) ... Setting up mokutil (0.3.0+1538710437.fb6250f-0ubuntu2~18.04.1) ... Setting up sbsigntool (0.6-3.2ubuntu2) ... Setting up shim-signed (1.37~18.04.3+15+1533136590.3beb971-0ubuntu1) ... Generating a new Secure Boot signing key: Can't load /var/lib/shim-signed/mok/.rnd into RNG 140449331253696:error:2406F079:random number generator:RAND_load_file:Cannot open file:../crypto/rand/randfile.c:88:Filename=/var/lib/shim-signed/mok/.rnd Generating a RSA private key ............................+++++ .....+++++ writing new private key to '/var/lib/shim-signed/mok/MOK.priv' ----- dpkg-query: no packages found matching linux-image-[0-9]* EFI variables are not supported on this system /sys/firmware/efi/efivars not found, aborting. Selecting previously unselected package framoscamerasuite. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 17695 files and directories currently installed.) Preparing to unpack .../00-framoscamerasuite_4.2.0.0_amd64.deb ... Unpacking framoscamerasuite (4.2.0.0) ... Selecting previously unselected package libxxf86vm1:amd64. Preparing to unpack .../01-libxxf86vm1_1%3a1.1.4-1_amd64.deb ... Unpacking libxxf86vm1:amd64 (1:1.1.4-1) ... Selecting previously unselected package distro-info-data. Preparing to unpack .../02-distro-info-data_0.37ubuntu0.7_all.deb ... Unpacking distro-info-data (0.37ubuntu0.7) ... Selecting previously unselected package dmsetup. Preparing to unpack .../03-dmsetup_2%3a1.02.145-4.1ubuntu3.18.04.3_amd64.deb ... Unpacking dmsetup (2:1.02.145-4.1ubuntu3.18.04.3) ... Selecting previously unselected package lsb-release. Preparing to unpack .../04-lsb-release_9.20170808ubuntu1_all.deb ... Unpacking lsb-release (9.20170808ubuntu1) ... Selecting previously unselected package libdrm-common. Preparing to unpack .../05-libdrm-common_2.4.99-1ubuntu1~18.04.2_all.deb ... Unpacking libdrm-common (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libdrm2:amd64. Preparing to unpack .../06-libdrm2_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libedit2:amd64. Preparing to unpack .../07-libedit2_3.1-20170329-1_amd64.deb ... Unpacking libedit2:amd64 (3.1-20170329-1) ... Selecting previously unselected package libdrm-amdgpu1:amd64. Preparing to unpack .../08-libdrm-amdgpu1_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-amdgpu1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libpciaccess0:amd64. Preparing to unpack .../09-libpciaccess0_0.14-1_amd64.deb ... Unpacking libpciaccess0:amd64 (0.14-1) ... Selecting previously unselected package libdrm-intel1:amd64. Preparing to unpack .../10-libdrm-intel1_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-intel1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libdrm-radeon1:amd64. Preparing to unpack .../11-libdrm-radeon1_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-radeon1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libdrm-nouveau2:amd64. Preparing to unpack .../12-libdrm-nouveau2_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-nouveau2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libdrm-dev:amd64. Preparing to unpack .../13-libdrm-dev_2.4.99-1ubuntu1~18.04.2_amd64.deb ... Unpacking libdrm-dev:amd64 (2.4.99-1ubuntu1~18.04.2) ... Selecting previously unselected package libwayland-server0:amd64. Preparing to unpack .../14-libwayland-server0_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... Unpacking libwayland-server0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Selecting previously unselected package libgbm1:amd64. Preparing to unpack .../15-libgbm1_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking libgbm1:amd64 (19.2.8-0ubuntu0~18.04.3) ... Selecting previously unselected package libglapi-mesa:amd64. Preparing to unpack .../16-libglapi-mesa_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking libglapi-mesa:amd64 (19.2.8-0ubuntu0~18.04.3) ... Selecting previously unselected package libwayland-client0:amd64. Preparing to unpack .../17-libwayland-client0_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... Unpacking libwayland-client0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Selecting previously unselected package libx11-xcb1:amd64. Preparing to unpack .../18-libx11-xcb1_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-xcb1:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxcb-dri2-0:amd64. Preparing to unpack .../19-libxcb-dri2-0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-dri2-0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-dri3-0:amd64. Preparing to unpack .../20-libxcb-dri3-0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-dri3-0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-present0:amd64. Preparing to unpack .../21-libxcb-present0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-present0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-sync1:amd64. Preparing to unpack .../22-libxcb-sync1_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-sync1:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-xfixes0:amd64. Preparing to unpack .../23-libxcb-xfixes0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-xfixes0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxshmfence1:amd64. Preparing to unpack .../24-libxshmfence1_1.3-1_amd64.deb ... Unpacking libxshmfence1:amd64 (1.3-1) ... Selecting previously unselected package libegl-mesa0:amd64. Preparing to unpack .../25-libegl-mesa0_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking libegl-mesa0:amd64 (19.2.8-0ubuntu0~18.04.3) ... Selecting previously unselected package libllvm9:amd64. Preparing to unpack .../26-libllvm9_1%3a9-2~ubuntu18.04.2_amd64.deb ... Unpacking libllvm9:amd64 (1:9-2~ubuntu18.04.2) ... Selecting previously unselected package libsensors4:amd64. Preparing to unpack .../27-libsensors4_1%3a3.4.0-4_amd64.deb ... Unpacking libsensors4:amd64 (1:3.4.0-4) ... Selecting previously unselected package libgl1-mesa-dri:amd64. Preparing to unpack .../28-libgl1-mesa-dri_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking libgl1-mesa-dri:amd64 (19.2.8-0ubuntu0~18.04.3) ... Selecting previously unselected package libglvnd0:amd64. Preparing to unpack .../29-libglvnd0_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libglvnd0:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libgles1:amd64. Preparing to unpack .../30-libgles1_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libgles1:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libxcb-glx0:amd64. Preparing to unpack .../31-libxcb-glx0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-glx0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxdamage1:amd64. Preparing to unpack .../32-libxdamage1_1%3a1.1.4-3_amd64.deb ... Unpacking libxdamage1:amd64 (1:1.1.4-3) ... Selecting previously unselected package libxfixes3:amd64. Preparing to unpack .../33-libxfixes3_1%3a5.0.3-1_amd64.deb ... Unpacking libxfixes3:amd64 (1:5.0.3-1) ... Selecting previously unselected package libglx-mesa0:amd64. Preparing to unpack .../34-libglx-mesa0_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking libglx-mesa0:amd64 (19.2.8-0ubuntu0~18.04.3) ... Selecting previously unselected package libpthread-stubs0-dev:amd64. Preparing to unpack .../35-libpthread-stubs0-dev_0.3-4_amd64.deb ... Unpacking libpthread-stubs0-dev:amd64 (0.3-4) ... Selecting previously unselected package xorg-sgml-doctools. Preparing to unpack .../36-xorg-sgml-doctools_1%3a1.11-1_all.deb ... Unpacking xorg-sgml-doctools (1:1.11-1) ... Selecting previously unselected package x11proto-dev. Preparing to unpack .../37-x11proto-dev_2018.4-4_all.deb ... Unpacking x11proto-dev (2018.4-4) ... Selecting previously unselected package x11proto-core-dev. Preparing to unpack .../38-x11proto-core-dev_2018.4-4_all.deb ... Unpacking x11proto-core-dev (2018.4-4) ... Selecting previously unselected package libxau-dev:amd64. Preparing to unpack .../39-libxau-dev_1%3a1.0.8-1_amd64.deb ... Unpacking libxau-dev:amd64 (1:1.0.8-1) ... Selecting previously unselected package libxdmcp-dev:amd64. Preparing to unpack .../40-libxdmcp-dev_1%3a1.1.2-3_amd64.deb ... Unpacking libxdmcp-dev:amd64 (1:1.1.2-3) ... Selecting previously unselected package xtrans-dev. Preparing to unpack .../41-xtrans-dev_1.3.5-1_all.deb ... Unpacking xtrans-dev (1.3.5-1) ... Selecting previously unselected package libxcb1-dev:amd64. Preparing to unpack .../42-libxcb1-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb1-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libx11-dev:amd64. Preparing to unpack .../43-libx11-dev_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-dev:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libx11-doc. Preparing to unpack .../44-libx11-doc_2%3a1.6.4-3ubuntu0.2_all.deb ... Unpacking libx11-doc (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libx11-xcb-dev:amd64. Preparing to unpack .../45-libx11-xcb-dev_2%3a1.6.4-3ubuntu0.2_amd64.deb ... Unpacking libx11-xcb-dev:amd64 (2:1.6.4-3ubuntu0.2) ... Selecting previously unselected package libxcb-dri2-0-dev:amd64. Preparing to unpack .../46-libxcb-dri2-0-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-dri2-0-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-dri3-dev:amd64. Preparing to unpack .../47-libxcb-dri3-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-dri3-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-glx0-dev:amd64. Preparing to unpack .../48-libxcb-glx0-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-glx0-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-randr0:amd64. Preparing to unpack .../49-libxcb-randr0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-randr0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-render0:amd64. Preparing to unpack .../50-libxcb-render0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-render0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-render0-dev:amd64. Preparing to unpack .../51-libxcb-render0-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-render0-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-randr0-dev:amd64. Preparing to unpack .../52-libxcb-randr0-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-randr0-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-shape0:amd64. Preparing to unpack .../53-libxcb-shape0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-shape0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-shape0-dev:amd64. Preparing to unpack .../54-libxcb-shape0-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-shape0-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-xfixes0-dev:amd64. Preparing to unpack .../55-libxcb-xfixes0-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-xfixes0-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-sync-dev:amd64. Preparing to unpack .../56-libxcb-sync-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-sync-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libxcb-present-dev:amd64. Preparing to unpack .../57-libxcb-present-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-present-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package x11proto-fixes-dev. Preparing to unpack .../58-x11proto-fixes-dev_1%3a2018.4-4_all.deb ... Unpacking x11proto-fixes-dev (1:2018.4-4) ... Selecting previously unselected package libxfixes-dev:amd64. Preparing to unpack .../59-libxfixes-dev_1%3a5.0.3-1_amd64.deb ... Unpacking libxfixes-dev:amd64 (1:5.0.3-1) ... Selecting previously unselected package x11proto-damage-dev. Preparing to unpack .../60-x11proto-damage-dev_1%3a2018.4-4_all.deb ... Unpacking x11proto-damage-dev (1:2018.4-4) ... Selecting previously unselected package libxdamage-dev:amd64. Preparing to unpack .../61-libxdamage-dev_1%3a1.1.4-3_amd64.deb ... Unpacking libxdamage-dev:amd64 (1:1.1.4-3) ... Selecting previously unselected package x11proto-xext-dev. Preparing to unpack .../62-x11proto-xext-dev_2018.4-4_all.deb ... Unpacking x11proto-xext-dev (2018.4-4) ... Selecting previously unselected package libxext-dev:amd64. Preparing to unpack .../63-libxext-dev_2%3a1.3.3-1_amd64.deb ... Unpacking libxext-dev:amd64 (2:1.3.3-1) ... Selecting previously unselected package libxshmfence-dev:amd64. Preparing to unpack .../64-libxshmfence-dev_1.3-1_amd64.deb ... Unpacking libxshmfence-dev:amd64 (1.3-1) ... Selecting previously unselected package x11proto-xf86vidmode-dev. Preparing to unpack .../65-x11proto-xf86vidmode-dev_2018.4-4_all.deb ... Unpacking x11proto-xf86vidmode-dev (2018.4-4) ... Selecting previously unselected package libxxf86vm-dev:amd64. Preparing to unpack .../66-libxxf86vm-dev_1%3a1.1.4-1_amd64.deb ... Unpacking libxxf86vm-dev:amd64 (1:1.1.4-1) ... Selecting previously unselected package linux-headers-4.15.0-101. Preparing to unpack .../67-linux-headers-4.15.0-101_4.15.0-101.102_all.deb ... Unpacking linux-headers-4.15.0-101 (4.15.0-101.102) ... Selecting previously unselected package linux-headers-4.15.0-101-generic. Preparing to unpack .../68-linux-headers-4.15.0-101-generic_4.15.0-101.102_amd64.deb ... Unpacking linux-headers-4.15.0-101-generic (4.15.0-101.102) ... Selecting previously unselected package linux-headers-generic. Preparing to unpack .../69-linux-headers-generic_4.15.0.101.91_amd64.deb ... Unpacking linux-headers-generic (4.15.0.101.91) ... Selecting previously unselected package mesa-common-dev:amd64. Preparing to unpack .../70-mesa-common-dev_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking mesa-common-dev:amd64 (19.2.8-0ubuntu0~18.04.3) ... Selecting previously unselected package os-prober. Preparing to unpack .../71-os-prober_1.74ubuntu1_amd64.deb ... Unpacking os-prober (1.74ubuntu1) ... Selecting previously unselected package secureboot-db. Preparing to unpack .../72-secureboot-db_1.4~ubuntu0.18.04.1_amd64.deb ... Unpacking secureboot-db (1.4~ubuntu0.18.04.1) ... Selecting previously unselected package libegl1:amd64. Preparing to unpack .../73-libegl1_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libegl1:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libglx0:amd64. Preparing to unpack .../74-libglx0_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libglx0:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libgl1:amd64. Preparing to unpack .../75-libgl1_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libgl1:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libglvnd-core-dev:amd64. Preparing to unpack .../76-libglvnd-core-dev_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libglvnd-core-dev:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libgles2:amd64. Preparing to unpack .../77-libgles2_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libgles2:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libopengl0:amd64. Preparing to unpack .../78-libopengl0_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libopengl0:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libglvnd-dev:amd64. Preparing to unpack .../79-libglvnd-dev_1.0.0-2ubuntu2.3_amd64.deb ... Unpacking libglvnd-dev:amd64 (1.0.0-2ubuntu2.3) ... Selecting previously unselected package libgl1-mesa-dev:amd64. Preparing to unpack .../80-libgl1-mesa-dev_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking libgl1-mesa-dev:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up libedit2:amd64 (3.1-20170329-1) ... Setting up libglvnd0:amd64 (1.0.0-2ubuntu2.3) ... Setting up libopengl0:amd64 (1.0.0-2ubuntu2.3) ... Setting up libgles1:amd64 (1.0.0-2ubuntu2.3) ... Setting up secureboot-db (1.4~ubuntu0.18.04.1) ... Can't access efivars filesystem at /sys/firmware/efi/efivars, aborting Setting up libpthread-stubs0-dev:amd64 (0.3-4) ... Setting up libxshmfence1:amd64 (1.3-1) ... Setting up xorg-sgml-doctools (1:1.11-1) ... Setting up linux-headers-4.15.0-101 (4.15.0-101.102) ... Setting up libwayland-client0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Setting up linux-headers-4.15.0-101-generic (4.15.0-101.102) ... /etc/kernel/header_postinst.d/dkms: * dkms: running auto installation service for kernel 4.15.0-101-generic ...done. Setting up distro-info-data (0.37ubuntu0.7) ... Setting up framoscamerasuite (4.2.0.0) ... EFI variables are not supported on this system Setting up libglapi-mesa:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up lsb-release (9.20170808ubuntu1) ... Setting up x11proto-dev (2018.4-4) ... Setting up libdrm-common (2.4.99-1ubuntu1~18.04.2) ... Setting up x11proto-damage-dev (1:2018.4-4) ... Setting up libx11-xcb1:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up xtrans-dev (1.3.5-1) ... Setting up x11proto-xext-dev (2018.4-4) ... Setting up dmsetup (2:1.02.145-4.1ubuntu3.18.04.3) ... Setting up libx11-doc (2:1.6.4-3ubuntu0.2) ... Setting up libpciaccess0:amd64 (0.14-1) ... Setting up libsensors4:amd64 (1:3.4.0-4) ... Setting up libgles2:amd64 (1.0.0-2ubuntu2.3) ... Setting up libxdmcp6:amd64 (1:1.1.2-3) ... Setting up libllvm9:amd64 (1:9-2~ubuntu18.04.2) ... Setting up libglvnd-core-dev:amd64 (1.0.0-2ubuntu2.3) ... Setting up libx11-data (2:1.6.4-3ubuntu0.2) ... Setting up libxau6:amd64 (1:1.0.8-1) ... Setting up libwayland-server0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Setting up linux-headers-generic (4.15.0.101.91) ... Setting up x11proto-core-dev (2018.4-4) ... Setting up libxshmfence-dev:amd64 (1.3-1) ... Setting up x11proto-fixes-dev (1:2018.4-4) ... Setting up os-prober (1.74ubuntu1) ... Setting up x11proto-xf86vidmode-dev (2018.4-4) ... Setting up libxau-dev:amd64 (1:1.0.8-1) ... Setting up libdrm2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libdrm-intel1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libxdmcp-dev:amd64 (1:1.1.2-3) ... Setting up libdrm-radeon1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libdrm-nouveau2:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libxcb1:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-present0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-dri2-0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-dri3-0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-glx0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-randr0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-xfixes0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-render0:amd64 (1.13-2~ubuntu18.04) ... Setting up libdrm-amdgpu1:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libdrm-dev:amd64 (2.4.99-1ubuntu1~18.04.2) ... Setting up libgbm1:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up libx11-6:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up libgl1-mesa-dri:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up libxcb-sync1:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-shape0:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb1-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-glx0-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libegl-mesa0:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up libx11-dev:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up libxcb-sync-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libx11-xcb-dev:amd64 (2:1.6.4-3ubuntu0.2) ... Setting up libxdamage1:amd64 (1:1.1.4-3) ... Setting up mesa-common-dev:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up libxext6:amd64 (2:1.3.3-1) ... Setting up libxfixes3:amd64 (1:5.0.3-1) ... Setting up libxcb-dri2-0-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-render0-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libegl1:amd64 (1.0.0-2ubuntu2.3) ... Setting up libxcb-dri3-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libxext-dev:amd64 (2:1.3.3-1) ... Setting up libxcb-shape0-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libxxf86vm1:amd64 (1:1.1.4-1) ... Setting up libxxf86vm-dev:amd64 (1:1.1.4-1) ... Setting up libxfixes-dev:amd64 (1:5.0.3-1) ... Setting up libglx-mesa0:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up libxcb-randr0-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libxcb-xfixes0-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libxdamage-dev:amd64 (1:1.1.4-3) ... Setting up libxcb-present-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libglx0:amd64 (1.0.0-2ubuntu2.3) ... Setting up libgl1:amd64 (1.0.0-2ubuntu2.3) ... Setting up libglvnd-dev:amd64 (1.0.0-2ubuntu2.3) ... Setting up libgl1-mesa-dev:amd64 (19.2.8-0ubuntu0~18.04.3) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Invoking 'apt-get clean' ---> 535bacb8a4f6 Removing intermediate container 0f27aecb8c34 Step 26/31 : RUN echo "libglfw3-dev: 3.2.1-1" && echo "libglu1-mesa-dev: 9.0.0-2.1build1" && echo "libgtk-3-dev: 3.22.30-1ubuntu4" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libglfw3-dev libglu1-mesa-dev libgtk-3-dev ---> Running in 62981612fe86 libglfw3-dev: 3.2.1-1 libglu1-mesa-dev: 9.0.0-2.1build1 libgtk-3-dev: 3.22.30-1ubuntu4 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes libglfw3-dev libglu1-mesa-dev libgtk-3-dev' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done The following additional packages will be installed: adwaita-icon-theme at-spi2-core dbus dconf-gsettings-backend dconf-service fontconfig fontconfig-config fonts-dejavu-core gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-pango-1.0 glib-networking glib-networking-common glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme humanity-icon-theme icu-devtools libapparmor1 libatk-bridge2.0-0 libatk-bridge2.0-dev libatk1.0-0 libatk1.0-data libatk1.0-dev libatspi2.0-0 libatspi2.0-dev libavahi-client3 libavahi-common-data libavahi-common3 libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcairo2-dev libcolord2 libcups2 libdatrie1 libdbus-1-3 libdbus-1-dev libdconf1 libegl1-mesa-dev libepoxy-dev libepoxy0 libexpat1-dev libfontconfig1 libfontconfig1-dev libfreetype6-dev libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgdk-pixbuf2.0-dev libgirepository-1.0-1 libglfw3 libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin libglu1-mesa libgraphite2-3 libgraphite2-dev libgtk-3-0 libgtk-3-bin libgtk-3-common libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b libice-dev libice6 libicu-dev libicu-le-hb-dev libicu-le-hb0 libiculx60 libjbig0 libjpeg-turbo8 libjpeg8 libjson-glib-1.0-0 libjson-glib-1.0-common liblcms2-2 liblzo2-2 libpango-1.0-0 libpango1.0-dev libpangocairo-1.0-0 libpangoft2-1.0-0 libpangoxft-1.0-0 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-0 libpixman-1-dev libpng-dev libpng-tools libproxy1v5 librest-0.7-0 librsvg2-2 librsvg2-common libsm-dev libsm6 libsoup-gnome2.4-1 libsoup2.4-1 libthai-data libthai0 libtiff5 libvulkan-dev libvulkan1 libwayland-bin libwayland-cursor0 libwayland-dev libwayland-egl1 libxcb-shm0 libxcb-shm0-dev libxcomposite-dev libxcomposite1 libxcursor-dev libxcursor1 libxft-dev libxft2 libxi-dev libxi6 libxinerama-dev libxinerama1 libxkbcommon-dev libxkbcommon0 libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxtst-dev libxtst6 pkg-config ubuntu-mono wayland-protocols x11-common x11proto-composite-dev x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xkb-data Suggested packages: default-dbus-session-bus | dbus-session-bus libcairo2-doc colord cups-common libegl1-mesa | libegl1-x11 libglib2.0-doc libgraphite2-utils gvfs libgtk-3-doc libice-doc icu-doc liblcms2-utils imagemagick libpango1.0-doc librsvg2-bin libsm-doc libwayland-doc The following NEW packages will be installed: adwaita-icon-theme at-spi2-core dbus dconf-gsettings-backend dconf-service fontconfig fontconfig-config fonts-dejavu-core gir1.2-atk-1.0 gir1.2-atspi-2.0 gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0 gir1.2-gtk-3.0 gir1.2-harfbuzz-0.0 gir1.2-pango-1.0 glib-networking glib-networking-common glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme humanity-icon-theme icu-devtools libapparmor1 libatk-bridge2.0-0 libatk-bridge2.0-dev libatk1.0-0 libatk1.0-data libatk1.0-dev libatspi2.0-0 libatspi2.0-dev libavahi-client3 libavahi-common-data libavahi-common3 libcairo-gobject2 libcairo-script-interpreter2 libcairo2 libcairo2-dev libcolord2 libcups2 libdatrie1 libdbus-1-3 libdbus-1-dev libdconf1 libegl1-mesa-dev libepoxy-dev libepoxy0 libexpat1-dev libfontconfig1 libfontconfig1-dev libfreetype6-dev libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgdk-pixbuf2.0-dev libgirepository-1.0-1 libglfw3 libglfw3-dev libglib2.0-bin libglib2.0-dev libglib2.0-dev-bin libglu1-mesa libglu1-mesa-dev libgraphite2-3 libgraphite2-dev libgtk-3-0 libgtk-3-bin libgtk-3-common libgtk-3-dev libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b libice-dev libice6 libicu-dev libicu-le-hb-dev libicu-le-hb0 libiculx60 libjbig0 libjpeg-turbo8 libjpeg8 libjson-glib-1.0-0 libjson-glib-1.0-common liblcms2-2 liblzo2-2 libpango-1.0-0 libpango1.0-dev libpangocairo-1.0-0 libpangoft2-1.0-0 libpangoxft-1.0-0 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libpixman-1-0 libpixman-1-dev libpng-dev libpng-tools libproxy1v5 librest-0.7-0 librsvg2-2 librsvg2-common libsm-dev libsm6 libsoup-gnome2.4-1 libsoup2.4-1 libthai-data libthai0 libtiff5 libvulkan-dev libvulkan1 libwayland-bin libwayland-cursor0 libwayland-dev libwayland-egl1 libxcb-shm0 libxcb-shm0-dev libxcomposite-dev libxcomposite1 libxcursor-dev libxcursor1 libxft-dev libxft2 libxi-dev libxi6 libxinerama-dev libxinerama1 libxkbcommon-dev libxkbcommon0 libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxtst-dev libxtst6 pkg-config ubuntu-mono wayland-protocols x11-common x11proto-composite-dev x11proto-input-dev x11proto-randr-dev x11proto-record-dev x11proto-xinerama-dev xkb-data 0 upgraded, 147 newly installed, 0 to remove and 4 not upgraded. Need to get 34.6 MB of archives. After this operation, 176 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 fonts-dejavu-core all 2.37-1 [1,041 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 fontconfig-config all 2.12.6-0ubuntu2 [55.8 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfontconfig1 amd64 2.12.6-0ubuntu2 [137 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 fontconfig amd64 2.12.6-0ubuntu2 [169 kB] Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.3 [110 kB] Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 x11-common all 1:7.7+19ubuntu7.1 [22.5 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libice6 amd64 2:1.0.9-2 [40.2 kB] Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsm6 amd64 2:1.2.2-1 [15.8 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrender1 amd64 1:0.9.10-1 [18.7 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxft2 amd64 2.3.2-1 [36.1 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxinerama1 amd64 2:1.1.3-1 [7,908 B] Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapparmor1 amd64 2.12-4ubuntu5.1 [31.3 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdbus-1-3 amd64 1.12.2-1ubuntu1.1 [175 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dbus amd64 1.12.2-1ubuntu1.1 [150 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgirepository-1.0-1 amd64 1.56.1-1 [82.0 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-glib-2.0 amd64 1.56.1-1 [131 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 xkb-data all 2.23.1-1ubuntu1.18.04.1 [325 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 hicolor-icon-theme all 0.17-2 [9,976 B] Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-common all 2.36.11-2 [4,536 B] Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-0 amd64 2.36.11-2 [165 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gtk-update-icon-cache amd64 3.22.30-1ubuntu4 [28.3 kB] Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpixman-1-0 amd64 0.34.0-2 [229 kB] Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-shm0 amd64 1.13-2~ubuntu18.04 [5,600 B] Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo2 amd64 1.15.10-2ubuntu0.1 [580 kB] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libthai-data all 0.1.27-2 [133 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdatrie1 amd64 0.2.10-7 [17.8 kB] Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libthai0 amd64 0.1.27-2 [18.0 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpango-1.0-0 amd64 1.40.14-1ubuntu0.1 [153 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-3 amd64 1.3.11-2 [78.7 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz0b amd64 1.7.2-1ubuntu1 [232 kB] Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpangoft2-1.0-0 amd64 1.40.14-1ubuntu0.1 [33.2 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpangocairo-1.0-0 amd64 1.40.14-1ubuntu0.1 [20.8 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 librsvg2-2 amd64 2.40.20-2 [98.6 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 librsvg2-common amd64 2.40.20-2 [5,124 B] Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 humanity-icon-theme all 0.6.15 [1,250 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ubuntu-mono all 16.10+18.04.20181005-0ubuntu1 [149 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 adwaita-icon-theme all 3.28.0-1ubuntu1 [3,306 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatspi2.0-0 amd64 2.28.0-1 [59.6 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxtst6 amd64 2:1.2.3-1 [12.8 kB] Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 at-spi2-core amd64 2.28.0-1 [47.9 kB] Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libdconf1 amd64 0.26.0-2ubuntu3 [33.1 kB] Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 dconf-service amd64 0.26.0-2ubuntu3 [28.4 kB] Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 dconf-gsettings-backend amd64 0.26.0-2ubuntu3 [20.0 kB] Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk1.0-data all 2.28.1-1 [2,992 B] Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk1.0-0 amd64 2.28.1-1 [43.9 kB] Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-atk-1.0 amd64 2.28.1-1 [17.8 kB] Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-freedesktop amd64 1.56.1-1 [9,080 B] Get:52 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-atspi-2.0 amd64 2.28.0-1 [14.6 kB] Get:53 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-gdkpixbuf-2.0 amd64 2.36.11-2 [7,748 B] Get:54 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-common all 3.22.30-1ubuntu4 [229 kB] Get:55 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpangoxft-1.0-0 amd64 1.40.14-1ubuntu0.1 [15.0 kB] Get:56 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gir1.2-pango-1.0 amd64 1.40.14-1ubuntu0.1 [21.6 kB] Get:57 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk-bridge2.0-0 amd64 2.26.2-1 [57.3 kB] Get:58 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo-gobject2 amd64 1.15.10-2ubuntu0.1 [17.1 kB] Get:59 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB] Get:60 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcolord2 amd64 1.3.3-2build1 [107 kB] Get:61 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-common-data amd64 0.7-3.1ubuntu1.2 [22.1 kB] Get:62 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-common3 amd64 0.7-3.1ubuntu1.2 [21.6 kB] Get:63 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libavahi-client3 amd64 0.7-3.1ubuntu1.2 [25.2 kB] Get:64 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcups2 amd64 2.2.7-1ubuntu2.8 [211 kB] Get:65 http://archive.ubuntu.com/ubuntu bionic/main amd64 libepoxy0 amd64 1.4.3-1 [181 kB] Get:66 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjson-glib-1.0-common all 1.4.2-3ubuntu0.18.04.1 [3,480 B] Get:67 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjson-glib-1.0-0 amd64 1.4.2-3ubuntu0.18.04.1 [58.4 kB] Get:68 http://archive.ubuntu.com/ubuntu bionic/main amd64 libproxy1v5 amd64 0.4.15-1 [49.5 kB] Get:69 http://archive.ubuntu.com/ubuntu bionic/main amd64 glib-networking-common all 2.56.0-1 [3,324 B] Get:70 http://archive.ubuntu.com/ubuntu bionic/main amd64 glib-networking-services amd64 2.56.0-1 [8,488 B] Get:71 http://archive.ubuntu.com/ubuntu bionic/main amd64 gsettings-desktop-schemas all 3.28.0-1ubuntu1 [27.8 kB] Get:72 http://archive.ubuntu.com/ubuntu bionic/main amd64 glib-networking amd64 2.56.0-1 [56.7 kB] Get:73 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsoup2.4-1 amd64 2.62.1-1ubuntu0.4 [292 kB] Get:74 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libsoup-gnome2.4-1 amd64 2.62.1-1ubuntu0.4 [5,088 B] Get:75 http://archive.ubuntu.com/ubuntu bionic/main amd64 librest-0.7-0 amd64 0.8.0-2 [31.8 kB] Get:76 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-cursor0 amd64 1.16.0-1ubuntu1.1~18.04.3 [10.1 kB] Get:77 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-egl1 amd64 1.16.0-1ubuntu1.1~18.04.3 [5,464 B] Get:78 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcomposite1 amd64 1:0.4.4-2 [6,988 B] Get:79 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcursor1 amd64 1:1.1.15-1 [19.8 kB] Get:80 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxi6 amd64 2:1.7.9-1 [29.2 kB] Get:81 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxkbcommon0 amd64 0.8.2-1~ubuntu18.04.1 [97.8 kB] Get:82 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrandr2 amd64 2:1.5.1-1 [18.1 kB] Get:83 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-0 amd64 3.22.30-1ubuntu4 [2,503 kB] Get:84 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gir1.2-gtk-3.0 amd64 3.22.30-1ubuntu4 [194 kB] Get:85 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-harfbuzz-0.0 amd64 1.7.2-1ubuntu1 [18.6 kB] Get:86 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 icu-devtools amd64 60.2-3ubuntu3.1 [179 kB] Get:87 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-bin amd64 2.56.4-0ubuntu0.18.04.6 [68.8 kB] Get:88 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev-bin amd64 2.56.4-0ubuntu0.18.04.6 [102 kB] Get:89 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre16-3 amd64 2:8.39-9 [147 kB] Get:90 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre32-3 amd64 2:8.39-9 [138 kB] Get:91 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcrecpp0v5 amd64 2:8.39-9 [15.3 kB] Get:92 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpcre3-dev amd64 2:8.39-9 [537 kB] Get:93 http://archive.ubuntu.com/ubuntu bionic/main amd64 pkg-config amd64 0.29.1-0ubuntu2 [45.0 kB] Get:94 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-dev amd64 2.56.4-0ubuntu0.18.04.6 [1,385 kB] Get:95 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdbus-1-dev amd64 1.12.2-1ubuntu1.1 [165 kB] Get:96 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-input-dev all 2018.4-4 [2,620 B] Get:97 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxi-dev amd64 2:1.7.9-1 [186 kB] Get:98 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-record-dev all 2018.4-4 [2,620 B] Get:99 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB] Get:100 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatspi2.0-dev amd64 2.28.0-1 [57.3 kB] Get:101 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk-bridge2.0-dev amd64 2.26.2-1 [3,816 B] Get:102 http://archive.ubuntu.com/ubuntu bionic/main amd64 libatk1.0-dev amd64 2.28.1-1 [79.9 kB] Get:103 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo-script-interpreter2 amd64 1.15.10-2ubuntu0.1 [53.5 kB] Get:104 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1-dev amd64 2.2.5-3ubuntu0.2 [122 kB] Get:105 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng-dev amd64 1.6.34-1ubuntu0.18.04.2 [177 kB] Get:106 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6-dev amd64 2.8.1-2ubuntu2 [2,539 kB] Get:107 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfontconfig1-dev amd64 2.12.6-0ubuntu2 [689 kB] Get:108 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrender-dev amd64 1:0.9.10-1 [24.9 kB] Get:109 http://archive.ubuntu.com/ubuntu bionic/main amd64 libice-dev amd64 2:1.0.9-2 [46.8 kB] Get:110 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsm-dev amd64 2:1.2.2-1 [16.2 kB] Get:111 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpixman-1-dev amd64 0.34.0-2 [244 kB] Get:112 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxcb-shm0-dev amd64 1.13-2~ubuntu18.04 [6,684 B] Get:113 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcairo2-dev amd64 1.15.10-2ubuntu0.1 [626 kB] Get:114 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-bin amd64 1.16.0-1ubuntu1.1~18.04.3 [19.8 kB] Get:115 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libwayland-dev amd64 1.16.0-1ubuntu1.1~18.04.3 [62.8 kB] Get:116 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libegl1-mesa-dev amd64 19.2.8-0ubuntu0~18.04.3 [20.3 kB] Get:117 http://archive.ubuntu.com/ubuntu bionic/main amd64 libepoxy-dev amd64 1.4.3-1 [119 kB] Get:118 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-bin amd64 2.36.11-2 [7,864 B] Get:119 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdk-pixbuf2.0-dev amd64 2.36.11-2 [46.8 kB] Get:120 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libglfw3 amd64 3.2.1-1 [49.2 kB] Get:121 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libglfw3-dev amd64 3.2.1-1 [30.9 kB] Get:122 http://archive.ubuntu.com/ubuntu bionic/main amd64 libglu1-mesa amd64 9.0.0-2.1build1 [168 kB] Get:123 http://archive.ubuntu.com/ubuntu bionic/main amd64 libglu1-mesa-dev amd64 9.0.0-2.1build1 [206 kB] Get:124 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgraphite2-dev amd64 1.3.11-2 [14.5 kB] Get:125 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-bin amd64 3.22.30-1ubuntu4 [57.4 kB] Get:126 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-icu0 amd64 1.7.2-1ubuntu1 [5,604 B] Get:127 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-gobject0 amd64 1.7.2-1ubuntu1 [13.4 kB] Get:128 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb0 amd64 1.0.3+git161113-4 [14.3 kB] Get:129 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libiculx60 amd64 60.2-3ubuntu3.1 [19.0 kB] Get:130 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-4 [29.5 kB] Get:131 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu-dev amd64 60.2-3ubuntu3.1 [8,889 kB] Get:132 http://archive.ubuntu.com/ubuntu bionic/main amd64 libharfbuzz-dev amd64 1.7.2-1ubuntu1 [302 kB] Get:133 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxft-dev amd64 2.3.2-1 [45.7 kB] Get:134 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpango1.0-dev amd64 1.40.14-1ubuntu0.1 [288 kB] Get:135 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-xinerama-dev all 2018.4-4 [2,628 B] Get:136 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxinerama-dev amd64 2:1.1.3-1 [8,404 B] Get:137 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-randr-dev all 2018.4-4 [2,620 B] Get:138 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxrandr-dev amd64 2:1.5.1-1 [24.0 kB] Get:139 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcursor-dev amd64 1:1.1.15-1 [26.5 kB] Get:140 http://archive.ubuntu.com/ubuntu bionic/main amd64 x11proto-composite-dev all 1:2018.4-4 [2,620 B] Get:141 http://archive.ubuntu.com/ubuntu bionic/main amd64 libxcomposite-dev amd64 1:0.4.4-2 [9,136 B] Get:142 http://archive.ubuntu.com/ubuntu bionic/main amd64 wayland-protocols all 1.13-1 [50.5 kB] Get:143 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxkbcommon-dev amd64 0.8.2-1~ubuntu18.04.1 [150 kB] Get:144 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgtk-3-dev amd64 3.22.30-1ubuntu4 [897 kB] Get:145 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng-tools amd64 1.6.34-1ubuntu0.18.04.2 [25.6 kB] Get:146 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libvulkan1 amd64 1.1.70+dfsg1-1ubuntu0.18.04.1 [93.4 kB] Get:147 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libvulkan-dev amd64 1.1.70+dfsg1-1ubuntu0.18.04.1 [1,185 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 34.6 MB in 1s (35.9 MB/s) Selecting previously unselected package fonts-dejavu-core. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 50702 files and directories currently installed.) Preparing to unpack .../000-fonts-dejavu-core_2.37-1_all.deb ... Unpacking fonts-dejavu-core (2.37-1) ... Selecting previously unselected package fontconfig-config. Preparing to unpack .../001-fontconfig-config_2.12.6-0ubuntu2_all.deb ... Unpacking fontconfig-config (2.12.6-0ubuntu2) ... Selecting previously unselected package libfontconfig1:amd64. Preparing to unpack .../002-libfontconfig1_2.12.6-0ubuntu2_amd64.deb ... Unpacking libfontconfig1:amd64 (2.12.6-0ubuntu2) ... Selecting previously unselected package fontconfig. Preparing to unpack .../003-fontconfig_2.12.6-0ubuntu2_amd64.deb ... Unpacking fontconfig (2.12.6-0ubuntu2) ... Selecting previously unselected package libjpeg-turbo8:amd64. Preparing to unpack .../004-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.3_amd64.deb ... Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Selecting previously unselected package liblzo2-2:amd64. Preparing to unpack .../005-liblzo2-2_2.08-1.2_amd64.deb ... Unpacking liblzo2-2:amd64 (2.08-1.2) ... Selecting previously unselected package x11-common. Preparing to unpack .../006-x11-common_1%3a7.7+19ubuntu7.1_all.deb ... dpkg-query: no packages found matching nux-tools Unpacking x11-common (1:7.7+19ubuntu7.1) ... Selecting previously unselected package libice6:amd64. Preparing to unpack .../007-libice6_2%3a1.0.9-2_amd64.deb ... Unpacking libice6:amd64 (2:1.0.9-2) ... Selecting previously unselected package libsm6:amd64. Preparing to unpack .../008-libsm6_2%3a1.2.2-1_amd64.deb ... Unpacking libsm6:amd64 (2:1.2.2-1) ... Selecting previously unselected package libxrender1:amd64. Preparing to unpack .../009-libxrender1_1%3a0.9.10-1_amd64.deb ... Unpacking libxrender1:amd64 (1:0.9.10-1) ... Selecting previously unselected package libxft2:amd64. Preparing to unpack .../010-libxft2_2.3.2-1_amd64.deb ... Unpacking libxft2:amd64 (2.3.2-1) ... Selecting previously unselected package libxinerama1:amd64. Preparing to unpack .../011-libxinerama1_2%3a1.1.3-1_amd64.deb ... Unpacking libxinerama1:amd64 (2:1.1.3-1) ... Selecting previously unselected package libapparmor1:amd64. Preparing to unpack .../012-libapparmor1_2.12-4ubuntu5.1_amd64.deb ... Unpacking libapparmor1:amd64 (2.12-4ubuntu5.1) ... Selecting previously unselected package libdbus-1-3:amd64. Preparing to unpack .../013-libdbus-1-3_1.12.2-1ubuntu1.1_amd64.deb ... Unpacking libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) ... Selecting previously unselected package dbus. Preparing to unpack .../014-dbus_1.12.2-1ubuntu1.1_amd64.deb ... Unpacking dbus (1.12.2-1ubuntu1.1) ... Selecting previously unselected package libgirepository-1.0-1:amd64. Preparing to unpack .../015-libgirepository-1.0-1_1.56.1-1_amd64.deb ... Unpacking libgirepository-1.0-1:amd64 (1.56.1-1) ... Selecting previously unselected package gir1.2-glib-2.0:amd64. Preparing to unpack .../016-gir1.2-glib-2.0_1.56.1-1_amd64.deb ... Unpacking gir1.2-glib-2.0:amd64 (1.56.1-1) ... Selecting previously unselected package xkb-data. Preparing to unpack .../017-xkb-data_2.23.1-1ubuntu1.18.04.1_all.deb ... Unpacking xkb-data (2.23.1-1ubuntu1.18.04.1) ... Selecting previously unselected package hicolor-icon-theme. Preparing to unpack .../018-hicolor-icon-theme_0.17-2_all.deb ... Unpacking hicolor-icon-theme (0.17-2) ... Selecting previously unselected package libjpeg8:amd64. Preparing to unpack .../019-libjpeg8_8c-2ubuntu8_amd64.deb ... Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... Selecting previously unselected package libjbig0:amd64. Preparing to unpack .../020-libjbig0_2.1-3.1build1_amd64.deb ... Unpacking libjbig0:amd64 (2.1-3.1build1) ... Selecting previously unselected package libtiff5:amd64. Preparing to unpack .../021-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ... Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Selecting previously unselected package libgdk-pixbuf2.0-common. Preparing to unpack .../022-libgdk-pixbuf2.0-common_2.36.11-2_all.deb ... Unpacking libgdk-pixbuf2.0-common (2.36.11-2) ... Selecting previously unselected package libgdk-pixbuf2.0-0:amd64. Preparing to unpack .../023-libgdk-pixbuf2.0-0_2.36.11-2_amd64.deb ... Unpacking libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ... Selecting previously unselected package gtk-update-icon-cache. Preparing to unpack .../024-gtk-update-icon-cache_3.22.30-1ubuntu4_amd64.deb ... No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed. No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed. Unpacking gtk-update-icon-cache (3.22.30-1ubuntu4) ... Selecting previously unselected package libpixman-1-0:amd64. Preparing to unpack .../025-libpixman-1-0_0.34.0-2_amd64.deb ... Unpacking libpixman-1-0:amd64 (0.34.0-2) ... Selecting previously unselected package libxcb-shm0:amd64. Preparing to unpack .../026-libxcb-shm0_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-shm0:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libcairo2:amd64. Preparing to unpack .../027-libcairo2_1.15.10-2ubuntu0.1_amd64.deb ... Unpacking libcairo2:amd64 (1.15.10-2ubuntu0.1) ... Selecting previously unselected package libthai-data. Preparing to unpack .../028-libthai-data_0.1.27-2_all.deb ... Unpacking libthai-data (0.1.27-2) ... Selecting previously unselected package libdatrie1:amd64. Preparing to unpack .../029-libdatrie1_0.2.10-7_amd64.deb ... Unpacking libdatrie1:amd64 (0.2.10-7) ... Selecting previously unselected package libthai0:amd64. Preparing to unpack .../030-libthai0_0.1.27-2_amd64.deb ... Unpacking libthai0:amd64 (0.1.27-2) ... Selecting previously unselected package libpango-1.0-0:amd64. Preparing to unpack .../031-libpango-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ... Unpacking libpango-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Selecting previously unselected package libgraphite2-3:amd64. Preparing to unpack .../032-libgraphite2-3_1.3.11-2_amd64.deb ... Unpacking libgraphite2-3:amd64 (1.3.11-2) ... Selecting previously unselected package libharfbuzz0b:amd64. Preparing to unpack .../033-libharfbuzz0b_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libpangoft2-1.0-0:amd64. Preparing to unpack .../034-libpangoft2-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ... Unpacking libpangoft2-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Selecting previously unselected package libpangocairo-1.0-0:amd64. Preparing to unpack .../035-libpangocairo-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ... Unpacking libpangocairo-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Selecting previously unselected package librsvg2-2:amd64. Preparing to unpack .../036-librsvg2-2_2.40.20-2_amd64.deb ... Unpacking librsvg2-2:amd64 (2.40.20-2) ... Selecting previously unselected package librsvg2-common:amd64. Preparing to unpack .../037-librsvg2-common_2.40.20-2_amd64.deb ... Unpacking librsvg2-common:amd64 (2.40.20-2) ... Selecting previously unselected package humanity-icon-theme. Preparing to unpack .../038-humanity-icon-theme_0.6.15_all.deb ... Unpacking humanity-icon-theme (0.6.15) ... Selecting previously unselected package ubuntu-mono. Preparing to unpack .../039-ubuntu-mono_16.10+18.04.20181005-0ubuntu1_all.deb ... Unpacking ubuntu-mono (16.10+18.04.20181005-0ubuntu1) ... Selecting previously unselected package adwaita-icon-theme. Preparing to unpack .../040-adwaita-icon-theme_3.28.0-1ubuntu1_all.deb ... Unpacking adwaita-icon-theme (3.28.0-1ubuntu1) ... Selecting previously unselected package libatspi2.0-0:amd64. Preparing to unpack .../041-libatspi2.0-0_2.28.0-1_amd64.deb ... Unpacking libatspi2.0-0:amd64 (2.28.0-1) ... Selecting previously unselected package libxtst6:amd64. Preparing to unpack .../042-libxtst6_2%3a1.2.3-1_amd64.deb ... Unpacking libxtst6:amd64 (2:1.2.3-1) ... Selecting previously unselected package at-spi2-core. Preparing to unpack .../043-at-spi2-core_2.28.0-1_amd64.deb ... Unpacking at-spi2-core (2.28.0-1) ... Selecting previously unselected package libdconf1:amd64. Preparing to unpack .../044-libdconf1_0.26.0-2ubuntu3_amd64.deb ... Unpacking libdconf1:amd64 (0.26.0-2ubuntu3) ... Selecting previously unselected package dconf-service. Preparing to unpack .../045-dconf-service_0.26.0-2ubuntu3_amd64.deb ... Unpacking dconf-service (0.26.0-2ubuntu3) ... Selecting previously unselected package dconf-gsettings-backend:amd64. Preparing to unpack .../046-dconf-gsettings-backend_0.26.0-2ubuntu3_amd64.deb ... Unpacking dconf-gsettings-backend:amd64 (0.26.0-2ubuntu3) ... Selecting previously unselected package libatk1.0-data. Preparing to unpack .../047-libatk1.0-data_2.28.1-1_all.deb ... Unpacking libatk1.0-data (2.28.1-1) ... Selecting previously unselected package libatk1.0-0:amd64. Preparing to unpack .../048-libatk1.0-0_2.28.1-1_amd64.deb ... Unpacking libatk1.0-0:amd64 (2.28.1-1) ... Selecting previously unselected package gir1.2-atk-1.0:amd64. Preparing to unpack .../049-gir1.2-atk-1.0_2.28.1-1_amd64.deb ... Unpacking gir1.2-atk-1.0:amd64 (2.28.1-1) ... Selecting previously unselected package gir1.2-freedesktop:amd64. Preparing to unpack .../050-gir1.2-freedesktop_1.56.1-1_amd64.deb ... Unpacking gir1.2-freedesktop:amd64 (1.56.1-1) ... Selecting previously unselected package gir1.2-atspi-2.0:amd64. Preparing to unpack .../051-gir1.2-atspi-2.0_2.28.0-1_amd64.deb ... Unpacking gir1.2-atspi-2.0:amd64 (2.28.0-1) ... Selecting previously unselected package gir1.2-gdkpixbuf-2.0:amd64. Preparing to unpack .../052-gir1.2-gdkpixbuf-2.0_2.36.11-2_amd64.deb ... Unpacking gir1.2-gdkpixbuf-2.0:amd64 (2.36.11-2) ... Selecting previously unselected package libgtk-3-common. Preparing to unpack .../053-libgtk-3-common_3.22.30-1ubuntu4_all.deb ... Unpacking libgtk-3-common (3.22.30-1ubuntu4) ... Selecting previously unselected package libpangoxft-1.0-0:amd64. Preparing to unpack .../054-libpangoxft-1.0-0_1.40.14-1ubuntu0.1_amd64.deb ... Unpacking libpangoxft-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Selecting previously unselected package gir1.2-pango-1.0:amd64. Preparing to unpack .../055-gir1.2-pango-1.0_1.40.14-1ubuntu0.1_amd64.deb ... Unpacking gir1.2-pango-1.0:amd64 (1.40.14-1ubuntu0.1) ... Selecting previously unselected package libatk-bridge2.0-0:amd64. Preparing to unpack .../056-libatk-bridge2.0-0_2.26.2-1_amd64.deb ... Unpacking libatk-bridge2.0-0:amd64 (2.26.2-1) ... Selecting previously unselected package libcairo-gobject2:amd64. Preparing to unpack .../057-libcairo-gobject2_1.15.10-2ubuntu0.1_amd64.deb ... Unpacking libcairo-gobject2:amd64 (1.15.10-2ubuntu0.1) ... Selecting previously unselected package liblcms2-2:amd64. Preparing to unpack .../058-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ... Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Selecting previously unselected package libcolord2:amd64. Preparing to unpack .../059-libcolord2_1.3.3-2build1_amd64.deb ... Unpacking libcolord2:amd64 (1.3.3-2build1) ... Selecting previously unselected package libavahi-common-data:amd64. Preparing to unpack .../060-libavahi-common-data_0.7-3.1ubuntu1.2_amd64.deb ... Unpacking libavahi-common-data:amd64 (0.7-3.1ubuntu1.2) ... Selecting previously unselected package libavahi-common3:amd64. Preparing to unpack .../061-libavahi-common3_0.7-3.1ubuntu1.2_amd64.deb ... Unpacking libavahi-common3:amd64 (0.7-3.1ubuntu1.2) ... Selecting previously unselected package libavahi-client3:amd64. Preparing to unpack .../062-libavahi-client3_0.7-3.1ubuntu1.2_amd64.deb ... Unpacking libavahi-client3:amd64 (0.7-3.1ubuntu1.2) ... Selecting previously unselected package libcups2:amd64. Preparing to unpack .../063-libcups2_2.2.7-1ubuntu2.8_amd64.deb ... Unpacking libcups2:amd64 (2.2.7-1ubuntu2.8) ... Selecting previously unselected package libepoxy0:amd64. Preparing to unpack .../064-libepoxy0_1.4.3-1_amd64.deb ... Unpacking libepoxy0:amd64 (1.4.3-1) ... Selecting previously unselected package libjson-glib-1.0-common. Preparing to unpack .../065-libjson-glib-1.0-common_1.4.2-3ubuntu0.18.04.1_all.deb ... Unpacking libjson-glib-1.0-common (1.4.2-3ubuntu0.18.04.1) ... Selecting previously unselected package libjson-glib-1.0-0:amd64. Preparing to unpack .../066-libjson-glib-1.0-0_1.4.2-3ubuntu0.18.04.1_amd64.deb ... Unpacking libjson-glib-1.0-0:amd64 (1.4.2-3ubuntu0.18.04.1) ... Selecting previously unselected package libproxy1v5:amd64. Preparing to unpack .../067-libproxy1v5_0.4.15-1_amd64.deb ... Unpacking libproxy1v5:amd64 (0.4.15-1) ... Selecting previously unselected package glib-networking-common. Preparing to unpack .../068-glib-networking-common_2.56.0-1_all.deb ... Unpacking glib-networking-common (2.56.0-1) ... Selecting previously unselected package glib-networking-services. Preparing to unpack .../069-glib-networking-services_2.56.0-1_amd64.deb ... Unpacking glib-networking-services (2.56.0-1) ... Selecting previously unselected package gsettings-desktop-schemas. Preparing to unpack .../070-gsettings-desktop-schemas_3.28.0-1ubuntu1_all.deb ... Unpacking gsettings-desktop-schemas (3.28.0-1ubuntu1) ... Selecting previously unselected package glib-networking:amd64. Preparing to unpack .../071-glib-networking_2.56.0-1_amd64.deb ... Unpacking glib-networking:amd64 (2.56.0-1) ... Selecting previously unselected package libsoup2.4-1:amd64. Preparing to unpack .../072-libsoup2.4-1_2.62.1-1ubuntu0.4_amd64.deb ... Unpacking libsoup2.4-1:amd64 (2.62.1-1ubuntu0.4) ... Selecting previously unselected package libsoup-gnome2.4-1:amd64. Preparing to unpack .../073-libsoup-gnome2.4-1_2.62.1-1ubuntu0.4_amd64.deb ... Unpacking libsoup-gnome2.4-1:amd64 (2.62.1-1ubuntu0.4) ... Selecting previously unselected package librest-0.7-0:amd64. Preparing to unpack .../074-librest-0.7-0_0.8.0-2_amd64.deb ... Unpacking librest-0.7-0:amd64 (0.8.0-2) ... Selecting previously unselected package libwayland-cursor0:amd64. Preparing to unpack .../075-libwayland-cursor0_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... Unpacking libwayland-cursor0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Selecting previously unselected package libwayland-egl1:amd64. Preparing to unpack .../076-libwayland-egl1_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... Unpacking libwayland-egl1:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Selecting previously unselected package libxcomposite1:amd64. Preparing to unpack .../077-libxcomposite1_1%3a0.4.4-2_amd64.deb ... Unpacking libxcomposite1:amd64 (1:0.4.4-2) ... Selecting previously unselected package libxcursor1:amd64. Preparing to unpack .../078-libxcursor1_1%3a1.1.15-1_amd64.deb ... Unpacking libxcursor1:amd64 (1:1.1.15-1) ... Selecting previously unselected package libxi6:amd64. Preparing to unpack .../079-libxi6_2%3a1.7.9-1_amd64.deb ... Unpacking libxi6:amd64 (2:1.7.9-1) ... Selecting previously unselected package libxkbcommon0:amd64. Preparing to unpack .../080-libxkbcommon0_0.8.2-1~ubuntu18.04.1_amd64.deb ... Unpacking libxkbcommon0:amd64 (0.8.2-1~ubuntu18.04.1) ... Selecting previously unselected package libxrandr2:amd64. Preparing to unpack .../081-libxrandr2_2%3a1.5.1-1_amd64.deb ... Unpacking libxrandr2:amd64 (2:1.5.1-1) ... Selecting previously unselected package libgtk-3-0:amd64. Preparing to unpack .../082-libgtk-3-0_3.22.30-1ubuntu4_amd64.deb ... Unpacking libgtk-3-0:amd64 (3.22.30-1ubuntu4) ... Selecting previously unselected package gir1.2-gtk-3.0:amd64. Preparing to unpack .../083-gir1.2-gtk-3.0_3.22.30-1ubuntu4_amd64.deb ... Unpacking gir1.2-gtk-3.0:amd64 (3.22.30-1ubuntu4) ... Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64. Preparing to unpack .../084-gir1.2-harfbuzz-0.0_1.7.2-1ubuntu1_amd64.deb ... Unpacking gir1.2-harfbuzz-0.0:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package icu-devtools. Preparing to unpack .../085-icu-devtools_60.2-3ubuntu3.1_amd64.deb ... Unpacking icu-devtools (60.2-3ubuntu3.1) ... Selecting previously unselected package libglib2.0-bin. Preparing to unpack .../086-libglib2.0-bin_2.56.4-0ubuntu0.18.04.6_amd64.deb ... Unpacking libglib2.0-bin (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libglib2.0-dev-bin. Preparing to unpack .../087-libglib2.0-dev-bin_2.56.4-0ubuntu0.18.04.6_amd64.deb ... Unpacking libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libpcre16-3:amd64. Preparing to unpack .../088-libpcre16-3_2%3a8.39-9_amd64.deb ... Unpacking libpcre16-3:amd64 (2:8.39-9) ... Selecting previously unselected package libpcre32-3:amd64. Preparing to unpack .../089-libpcre32-3_2%3a8.39-9_amd64.deb ... Unpacking libpcre32-3:amd64 (2:8.39-9) ... Selecting previously unselected package libpcrecpp0v5:amd64. Preparing to unpack .../090-libpcrecpp0v5_2%3a8.39-9_amd64.deb ... Unpacking libpcrecpp0v5:amd64 (2:8.39-9) ... Selecting previously unselected package libpcre3-dev:amd64. Preparing to unpack .../091-libpcre3-dev_2%3a8.39-9_amd64.deb ... Unpacking libpcre3-dev:amd64 (2:8.39-9) ... Selecting previously unselected package pkg-config. Preparing to unpack .../092-pkg-config_0.29.1-0ubuntu2_amd64.deb ... Unpacking pkg-config (0.29.1-0ubuntu2) ... Selecting previously unselected package libglib2.0-dev:amd64. Preparing to unpack .../093-libglib2.0-dev_2.56.4-0ubuntu0.18.04.6_amd64.deb ... Unpacking libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.6) ... Selecting previously unselected package libdbus-1-dev:amd64. Preparing to unpack .../094-libdbus-1-dev_1.12.2-1ubuntu1.1_amd64.deb ... Unpacking libdbus-1-dev:amd64 (1.12.2-1ubuntu1.1) ... Selecting previously unselected package x11proto-input-dev. Preparing to unpack .../095-x11proto-input-dev_2018.4-4_all.deb ... Unpacking x11proto-input-dev (2018.4-4) ... Selecting previously unselected package libxi-dev:amd64. Preparing to unpack .../096-libxi-dev_2%3a1.7.9-1_amd64.deb ... Unpacking libxi-dev:amd64 (2:1.7.9-1) ... Selecting previously unselected package x11proto-record-dev. Preparing to unpack .../097-x11proto-record-dev_2018.4-4_all.deb ... Unpacking x11proto-record-dev (2018.4-4) ... Selecting previously unselected package libxtst-dev:amd64. Preparing to unpack .../098-libxtst-dev_2%3a1.2.3-1_amd64.deb ... Unpacking libxtst-dev:amd64 (2:1.2.3-1) ... Selecting previously unselected package libatspi2.0-dev:amd64. Preparing to unpack .../099-libatspi2.0-dev_2.28.0-1_amd64.deb ... Unpacking libatspi2.0-dev:amd64 (2.28.0-1) ... Selecting previously unselected package libatk-bridge2.0-dev:amd64. Preparing to unpack .../100-libatk-bridge2.0-dev_2.26.2-1_amd64.deb ... Unpacking libatk-bridge2.0-dev:amd64 (2.26.2-1) ... Selecting previously unselected package libatk1.0-dev:amd64. Preparing to unpack .../101-libatk1.0-dev_2.28.1-1_amd64.deb ... Unpacking libatk1.0-dev:amd64 (2.28.1-1) ... Selecting previously unselected package libcairo-script-interpreter2:amd64. Preparing to unpack .../102-libcairo-script-interpreter2_1.15.10-2ubuntu0.1_amd64.deb ... Unpacking libcairo-script-interpreter2:amd64 (1.15.10-2ubuntu0.1) ... Selecting previously unselected package libexpat1-dev:amd64. Preparing to unpack .../103-libexpat1-dev_2.2.5-3ubuntu0.2_amd64.deb ... Unpacking libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... Selecting previously unselected package libpng-dev:amd64. Preparing to unpack .../104-libpng-dev_1.6.34-1ubuntu0.18.04.2_amd64.deb ... Unpacking libpng-dev:amd64 (1.6.34-1ubuntu0.18.04.2) ... Selecting previously unselected package libfreetype6-dev:amd64. Preparing to unpack .../105-libfreetype6-dev_2.8.1-2ubuntu2_amd64.deb ... Unpacking libfreetype6-dev:amd64 (2.8.1-2ubuntu2) ... Selecting previously unselected package libfontconfig1-dev:amd64. Preparing to unpack .../106-libfontconfig1-dev_2.12.6-0ubuntu2_amd64.deb ... Unpacking libfontconfig1-dev:amd64 (2.12.6-0ubuntu2) ... Selecting previously unselected package libxrender-dev:amd64. Preparing to unpack .../107-libxrender-dev_1%3a0.9.10-1_amd64.deb ... Unpacking libxrender-dev:amd64 (1:0.9.10-1) ... Selecting previously unselected package libice-dev:amd64. Preparing to unpack .../108-libice-dev_2%3a1.0.9-2_amd64.deb ... Unpacking libice-dev:amd64 (2:1.0.9-2) ... Selecting previously unselected package libsm-dev:amd64. Preparing to unpack .../109-libsm-dev_2%3a1.2.2-1_amd64.deb ... Unpacking libsm-dev:amd64 (2:1.2.2-1) ... Selecting previously unselected package libpixman-1-dev:amd64. Preparing to unpack .../110-libpixman-1-dev_0.34.0-2_amd64.deb ... Unpacking libpixman-1-dev:amd64 (0.34.0-2) ... Selecting previously unselected package libxcb-shm0-dev:amd64. Preparing to unpack .../111-libxcb-shm0-dev_1.13-2~ubuntu18.04_amd64.deb ... Unpacking libxcb-shm0-dev:amd64 (1.13-2~ubuntu18.04) ... Selecting previously unselected package libcairo2-dev:amd64. Preparing to unpack .../112-libcairo2-dev_1.15.10-2ubuntu0.1_amd64.deb ... Unpacking libcairo2-dev:amd64 (1.15.10-2ubuntu0.1) ... Selecting previously unselected package libwayland-bin. Preparing to unpack .../113-libwayland-bin_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... Unpacking libwayland-bin (1.16.0-1ubuntu1.1~18.04.3) ... Selecting previously unselected package libwayland-dev:amd64. Preparing to unpack .../114-libwayland-dev_1.16.0-1ubuntu1.1~18.04.3_amd64.deb ... Unpacking libwayland-dev:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Selecting previously unselected package libegl1-mesa-dev:amd64. Preparing to unpack .../115-libegl1-mesa-dev_19.2.8-0ubuntu0~18.04.3_amd64.deb ... Unpacking libegl1-mesa-dev:amd64 (19.2.8-0ubuntu0~18.04.3) ... Selecting previously unselected package libepoxy-dev:amd64. Preparing to unpack .../116-libepoxy-dev_1.4.3-1_amd64.deb ... Unpacking libepoxy-dev:amd64 (1.4.3-1) ... Selecting previously unselected package libgdk-pixbuf2.0-bin. Preparing to unpack .../117-libgdk-pixbuf2.0-bin_2.36.11-2_amd64.deb ... Unpacking libgdk-pixbuf2.0-bin (2.36.11-2) ... Selecting previously unselected package libgdk-pixbuf2.0-dev. Preparing to unpack .../118-libgdk-pixbuf2.0-dev_2.36.11-2_amd64.deb ... Unpacking libgdk-pixbuf2.0-dev (2.36.11-2) ... Selecting previously unselected package libglfw3:amd64. Preparing to unpack .../119-libglfw3_3.2.1-1_amd64.deb ... Unpacking libglfw3:amd64 (3.2.1-1) ... Selecting previously unselected package libglfw3-dev:amd64. Preparing to unpack .../120-libglfw3-dev_3.2.1-1_amd64.deb ... Unpacking libglfw3-dev:amd64 (3.2.1-1) ... Selecting previously unselected package libglu1-mesa:amd64. Preparing to unpack .../121-libglu1-mesa_9.0.0-2.1build1_amd64.deb ... Unpacking libglu1-mesa:amd64 (9.0.0-2.1build1) ... Selecting previously unselected package libglu1-mesa-dev:amd64. Preparing to unpack .../122-libglu1-mesa-dev_9.0.0-2.1build1_amd64.deb ... Unpacking libglu1-mesa-dev:amd64 (9.0.0-2.1build1) ... Selecting previously unselected package libgraphite2-dev:amd64. Preparing to unpack .../123-libgraphite2-dev_1.3.11-2_amd64.deb ... Unpacking libgraphite2-dev:amd64 (1.3.11-2) ... Selecting previously unselected package libgtk-3-bin. Preparing to unpack .../124-libgtk-3-bin_3.22.30-1ubuntu4_amd64.deb ... Unpacking libgtk-3-bin (3.22.30-1ubuntu4) ... Selecting previously unselected package libharfbuzz-icu0:amd64. Preparing to unpack .../125-libharfbuzz-icu0_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz-icu0:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libharfbuzz-gobject0:amd64. Preparing to unpack .../126-libharfbuzz-gobject0_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz-gobject0:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libicu-le-hb0:amd64. Preparing to unpack .../127-libicu-le-hb0_1.0.3+git161113-4_amd64.deb ... Unpacking libicu-le-hb0:amd64 (1.0.3+git161113-4) ... Selecting previously unselected package libiculx60:amd64. Preparing to unpack .../128-libiculx60_60.2-3ubuntu3.1_amd64.deb ... Unpacking libiculx60:amd64 (60.2-3ubuntu3.1) ... Selecting previously unselected package libicu-le-hb-dev:amd64. Preparing to unpack .../129-libicu-le-hb-dev_1.0.3+git161113-4_amd64.deb ... Unpacking libicu-le-hb-dev:amd64 (1.0.3+git161113-4) ... Selecting previously unselected package libicu-dev. Preparing to unpack .../130-libicu-dev_60.2-3ubuntu3.1_amd64.deb ... Unpacking libicu-dev (60.2-3ubuntu3.1) ... Selecting previously unselected package libharfbuzz-dev:amd64. Preparing to unpack .../131-libharfbuzz-dev_1.7.2-1ubuntu1_amd64.deb ... Unpacking libharfbuzz-dev:amd64 (1.7.2-1ubuntu1) ... Selecting previously unselected package libxft-dev. Preparing to unpack .../132-libxft-dev_2.3.2-1_amd64.deb ... Unpacking libxft-dev (2.3.2-1) ... Selecting previously unselected package libpango1.0-dev. Preparing to unpack .../133-libpango1.0-dev_1.40.14-1ubuntu0.1_amd64.deb ... Unpacking libpango1.0-dev (1.40.14-1ubuntu0.1) ... Selecting previously unselected package x11proto-xinerama-dev. Preparing to unpack .../134-x11proto-xinerama-dev_2018.4-4_all.deb ... Unpacking x11proto-xinerama-dev (2018.4-4) ... Selecting previously unselected package libxinerama-dev:amd64. Preparing to unpack .../135-libxinerama-dev_2%3a1.1.3-1_amd64.deb ... Unpacking libxinerama-dev:amd64 (2:1.1.3-1) ... Selecting previously unselected package x11proto-randr-dev. Preparing to unpack .../136-x11proto-randr-dev_2018.4-4_all.deb ... Unpacking x11proto-randr-dev (2018.4-4) ... Selecting previously unselected package libxrandr-dev:amd64. Preparing to unpack .../137-libxrandr-dev_2%3a1.5.1-1_amd64.deb ... Unpacking libxrandr-dev:amd64 (2:1.5.1-1) ... Selecting previously unselected package libxcursor-dev:amd64. Preparing to unpack .../138-libxcursor-dev_1%3a1.1.15-1_amd64.deb ... Unpacking libxcursor-dev:amd64 (1:1.1.15-1) ... Selecting previously unselected package x11proto-composite-dev. Preparing to unpack .../139-x11proto-composite-dev_1%3a2018.4-4_all.deb ... Unpacking x11proto-composite-dev (1:2018.4-4) ... Selecting previously unselected package libxcomposite-dev:amd64. Preparing to unpack .../140-libxcomposite-dev_1%3a0.4.4-2_amd64.deb ... Unpacking libxcomposite-dev:amd64 (1:0.4.4-2) ... Selecting previously unselected package wayland-protocols. Preparing to unpack .../141-wayland-protocols_1.13-1_all.deb ... Unpacking wayland-protocols (1.13-1) ... Selecting previously unselected package libxkbcommon-dev:amd64. Preparing to unpack .../142-libxkbcommon-dev_0.8.2-1~ubuntu18.04.1_amd64.deb ... Unpacking libxkbcommon-dev:amd64 (0.8.2-1~ubuntu18.04.1) ... Selecting previously unselected package libgtk-3-dev:amd64. Preparing to unpack .../143-libgtk-3-dev_3.22.30-1ubuntu4_amd64.deb ... Unpacking libgtk-3-dev:amd64 (3.22.30-1ubuntu4) ... Selecting previously unselected package libpng-tools. Preparing to unpack .../144-libpng-tools_1.6.34-1ubuntu0.18.04.2_amd64.deb ... Unpacking libpng-tools (1.6.34-1ubuntu0.18.04.2) ... Selecting previously unselected package libvulkan1:amd64. Preparing to unpack .../145-libvulkan1_1.1.70+dfsg1-1ubuntu0.18.04.1_amd64.deb ... Unpacking libvulkan1:amd64 (1.1.70+dfsg1-1ubuntu0.18.04.1) ... Selecting previously unselected package libvulkan-dev:amd64. Preparing to unpack .../146-libvulkan-dev_1.1.70+dfsg1-1ubuntu0.18.04.1_amd64.deb ... Unpacking libvulkan-dev:amd64 (1.1.70+dfsg1-1ubuntu0.18.04.1) ... Setting up libxi6:amd64 (2:1.7.9-1) ... Setting up libvulkan1:amd64 (1.1.70+dfsg1-1ubuntu0.18.04.1) ... Setting up libwayland-bin (1.16.0-1ubuntu1.1~18.04.3) ... Setting up libxinerama1:amd64 (2:1.1.3-1) ... Setting up libjson-glib-1.0-common (1.4.2-3ubuntu0.18.04.1) ... Setting up glib-networking-common (2.56.0-1) ... Setting up libglib2.0-dev-bin (2.56.4-0ubuntu0.18.04.6) ... Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ... Setting up libjbig0:amd64 (2.1-3.1build1) ... Setting up fonts-dejavu-core (2.37-1) ... Setting up libpng-tools (1.6.34-1ubuntu0.18.04.2) ... Setting up libvulkan-dev:amd64 (1.1.70+dfsg1-1ubuntu0.18.04.1) ... Setting up xkb-data (2.23.1-1ubuntu1.18.04.1) ... Setting up libproxy1v5:amd64 (0.4.15-1) ... Setting up libgdk-pixbuf2.0-common (2.36.11-2) ... Setting up glib-networking-services (2.56.0-1) ... Setting up libdatrie1:amd64 (0.2.10-7) ... Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ... Setting up x11proto-record-dev (2018.4-4) ... Setting up libgirepository-1.0-1:amd64 (1.56.1-1) ... Setting up libjson-glib-1.0-0:amd64 (1.4.2-3ubuntu0.18.04.1) ... Setting up libgraphite2-3:amd64 (1.3.11-2) ... Setting up libatk1.0-data (2.28.1-1) ... Setting up pkg-config (0.29.1-0ubuntu2) ... Setting up libpixman-1-0:amd64 (0.34.0-2) ... Setting up gir1.2-glib-2.0:amd64 (1.56.1-1) ... Setting up libepoxy0:amd64 (1.4.3-1) ... Setting up x11proto-xinerama-dev (2018.4-4) ... Setting up libapparmor1:amd64 (2.12-4ubuntu5.1) ... Setting up libpixman-1-dev:amd64 (0.34.0-2) ... Setting up libatk1.0-0:amd64 (2.28.1-1) ... Setting up x11proto-randr-dev (2018.4-4) ... Setting up libxinerama-dev:amd64 (2:1.1.3-1) ... Setting up libdconf1:amd64 (0.26.0-2ubuntu3) ... Setting up libxcomposite1:amd64 (1:0.4.4-2) ... Setting up libxcb-shm0:amd64 (1.13-2~ubuntu18.04) ... Setting up libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... Setting up libxrender1:amd64 (1:0.9.10-1) ... Setting up libxkbcommon0:amd64 (0.8.2-1~ubuntu18.04.1) ... Setting up libglu1-mesa:amd64 (9.0.0-2.1build1) ... Setting up libpcrecpp0v5:amd64 (2:8.39-9) ... Setting up libpcre32-3:amd64 (2:8.39-9) ... Setting up icu-devtools (60.2-3ubuntu3.1) ... Setting up libpcre16-3:amd64 (2:8.39-9) ... Setting up libcolord2:amd64 (1.3.3-2build1) ... Setting up libthai-data (0.1.27-2) ... Setting up libpng-dev:amd64 (1.6.34-1ubuntu0.18.04.2) ... Setting up x11-common (1:7.7+19ubuntu7.1) ... update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults invoke-rc.d: could not determine current runlevel invoke-rc.d: policy-rc.d denied execution of start. Setting up hicolor-icon-theme (0.17-2) ... Setting up libglib2.0-bin (2.56.4-0ubuntu0.18.04.6) ... Setting up libgraphite2-dev:amd64 (1.3.11-2) ... Setting up wayland-protocols (1.13-1) ... Setting up libwayland-cursor0:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Setting up x11proto-input-dev (2018.4-4) ... Setting up x11proto-composite-dev (1:2018.4-4) ... Setting up libwayland-egl1:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Setting up libxrandr2:amd64 (2:1.5.1-1) ... Setting up libdbus-1-3:amd64 (1.12.2-1ubuntu1.1) ... Setting up liblzo2-2:amd64 (2.08-1.2) ... Setting up libavahi-common-data:amd64 (0.7-3.1ubuntu1.2) ... Setting up libepoxy-dev:amd64 (1.4.3-1) ... Setting up libjpeg8:amd64 (8c-2ubuntu8) ... Setting up libdbus-1-dev:amd64 (1.12.2-1ubuntu1.1) ... Setting up libglu1-mesa-dev:amd64 (9.0.0-2.1build1) ... Setting up libpcre3-dev:amd64 (2:8.39-9) ... Setting up gir1.2-atk-1.0:amd64 (2.28.1-1) ... Setting up fontconfig-config (2.12.6-0ubuntu2) ... Setting up libxkbcommon-dev:amd64 (0.8.2-1~ubuntu18.04.1) ... Setting up dconf-service (0.26.0-2ubuntu3) ... Setting up libxcomposite-dev:amd64 (1:0.4.4-2) ... Setting up gir1.2-freedesktop:amd64 (1.56.1-1) ... Setting up libatspi2.0-0:amd64 (2.28.0-1) ... Setting up libxcb-shm0-dev:amd64 (1.13-2~ubuntu18.04) ... Setting up libxrender-dev:amd64 (1:0.9.10-1) ... Setting up libharfbuzz0b:amd64 (1.7.2-1ubuntu1) ... Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ... Setting up libthai0:amd64 (0.1.27-2) ... Setting up libglib2.0-dev:amd64 (2.56.4-0ubuntu0.18.04.6) ... Setting up libxtst6:amd64 (2:1.2.3-1) ... Setting up libxcursor1:amd64 (1:1.1.15-1) ... Setting up gir1.2-harfbuzz-0.0:amd64 (1.7.2-1ubuntu1) ... Setting up libfreetype6-dev:amd64 (2.8.1-2ubuntu2) ... Setting up libatk-bridge2.0-0:amd64 (2.26.2-1) ... Setting up libice6:amd64 (2:1.0.9-2) ... Setting up libavahi-common3:amd64 (0.7-3.1ubuntu1.2) ... Setting up libxi-dev:amd64 (2:1.7.9-1) ... Setting up dbus (1.12.2-1ubuntu1.1) ... Setting up libwayland-dev:amd64 (1.16.0-1ubuntu1.1~18.04.3) ... Setting up dconf-gsettings-backend:amd64 (0.26.0-2ubuntu3) ... Setting up libharfbuzz-gobject0:amd64 (1.7.2-1ubuntu1) ... Setting up gir1.2-atspi-2.0:amd64 (2.28.0-1) ... Setting up libfontconfig1:amd64 (2.12.6-0ubuntu2) ... Setting up libxcursor-dev:amd64 (1:1.1.15-1) ... Setting up libsm6:amd64 (2:1.2.2-1) ... Setting up libharfbuzz-icu0:amd64 (1.7.2-1ubuntu1) ... Setting up libxrandr-dev:amd64 (2:1.5.1-1) ... Setting up gsettings-desktop-schemas (3.28.0-1ubuntu1) ... Setting up libgtk-3-common (3.22.30-1ubuntu4) ... Setting up at-spi2-core (2.28.0-1) ... Setting up libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ... Setting up libicu-le-hb0:amd64 (1.0.3+git161113-4) ... Setting up libglfw3:amd64 (3.2.1-1) ... Setting up libgdk-pixbuf2.0-bin (2.36.11-2) ... Setting up gir1.2-gdkpixbuf-2.0:amd64 (2.36.11-2) ... Setting up libxtst-dev:amd64 (2:1.2.3-1) ... Setting up gtk-update-icon-cache (3.22.30-1ubuntu4) ... Setting up libice-dev:amd64 (2:1.0.9-2) ... Setting up libegl1-mesa-dev:amd64 (19.2.8-0ubuntu0~18.04.3) ... Setting up libiculx60:amd64 (60.2-3ubuntu3.1) ... Setting up libavahi-client3:amd64 (0.7-3.1ubuntu1.2) ... Setting up libxft2:amd64 (2.3.2-1) ... Setting up libglfw3-dev:amd64 (3.2.1-1) ... Setting up fontconfig (2.12.6-0ubuntu2) ... Regenerating fonts cache... done. Setting up libcups2:amd64 (2.2.7-1ubuntu2.8) ... Setting up libfontconfig1-dev:amd64 (2.12.6-0ubuntu2) ... Setting up libcairo2:amd64 (1.15.10-2ubuntu0.1) ... Setting up libsm-dev:amd64 (2:1.2.2-1) ... Setting up libcairo-script-interpreter2:amd64 (1.15.10-2ubuntu0.1) ... Setting up libcairo-gobject2:amd64 (1.15.10-2ubuntu0.1) ... Setting up libxft-dev (2.3.2-1) ... Setting up libpango-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Setting up libpangoft2-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Setting up libpangoxft-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Setting up libpangocairo-1.0-0:amd64 (1.40.14-1ubuntu0.1) ... Setting up gir1.2-pango-1.0:amd64 (1.40.14-1ubuntu0.1) ... Setting up librsvg2-2:amd64 (2.40.20-2) ... Setting up librsvg2-common:amd64 (2.40.20-2) ... Setting up adwaita-icon-theme (3.28.0-1ubuntu1) ... update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-4) ... Setting up humanity-icon-theme (0.6.15) ... Setting up libicu-dev (60.2-3ubuntu3.1) ... Setting up ubuntu-mono (16.10+18.04.20181005-0ubuntu1) ... Processing triggers for libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... Setting up libatk1.0-dev:amd64 (2.28.1-1) ... Setting up libatspi2.0-dev:amd64 (2.28.0-1) ... Setting up libgdk-pixbuf2.0-dev (2.36.11-2) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Setting up glib-networking:amd64 (2.56.0-1) ... Setting up libatk-bridge2.0-dev:amd64 (2.26.2-1) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Setting up libharfbuzz-dev:amd64 (1.7.2-1ubuntu1) ... Setting up libcairo2-dev:amd64 (1.15.10-2ubuntu0.1) ... Setting up libsoup2.4-1:amd64 (2.62.1-1ubuntu0.4) ... Setting up libsoup-gnome2.4-1:amd64 (2.62.1-1ubuntu0.4) ... Setting up librest-0.7-0:amd64 (0.8.0-2) ... Setting up libpango1.0-dev (1.40.14-1ubuntu0.1) ... Setting up libgtk-3-0:amd64 (3.22.30-1ubuntu4) ... Setting up libgtk-3-bin (3.22.30-1ubuntu4) ... Setting up gir1.2-gtk-3.0:amd64 (3.22.30-1ubuntu4) ... Setting up libgtk-3-dev:amd64 (3.22.30-1ubuntu4) ... Processing triggers for libgdk-pixbuf2.0-0:amd64 (2.36.11-2) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Invoking 'apt-get clean' ---> 85334016c931 Removing intermediate container 62981612fe86 Step 27/31 : RUN echo "libssl-dev: 1.1.1-1ubuntu2.1~18.04.6" && echo "libusb-1.0-0-dev: 2:1.0.21-2" && echo "linux-headers-generic: 4.15.0.101.91" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libssl-dev libusb-1.0-0-dev linux-headers-generic ---> Running in 1f8cf7ad29cd libssl-dev: 1.1.1-1ubuntu2.1~18.04.6 libusb-1.0-0-dev: 2:1.0.21-2 linux-headers-generic: 4.15.0.101.91 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes libssl-dev libusb-1.0-0-dev linux-headers-generic' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done linux-headers-generic is already the newest version (4.15.0.101.91). linux-headers-generic set to manually installed. The following additional packages will be installed: libusb-1.0-0 libusb-1.0-doc Suggested packages: libssl-doc The following NEW packages will be installed: libssl-dev libusb-1.0-0 libusb-1.0-0-dev libusb-1.0-doc 0 upgraded, 4 newly installed, 0 to remove and 4 not upgraded. Need to get 1,839 kB of archives. After this operation, 9,748 kB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 libusb-1.0-0 amd64 2:1.0.21-2 [43.3 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libssl-dev amd64 1.1.1-1ubuntu2.1~18.04.6 [1,566 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libusb-1.0-0-dev amd64 2:1.0.21-2 [60.5 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libusb-1.0-doc all 2:1.0.21-2 [170 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 1,839 kB in 0s (17.4 MB/s) Selecting previously unselected package libusb-1.0-0:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 67480 files and directories currently installed.) Preparing to unpack .../libusb-1.0-0_2%3a1.0.21-2_amd64.deb ... Unpacking libusb-1.0-0:amd64 (2:1.0.21-2) ... Selecting previously unselected package libssl-dev:amd64. Preparing to unpack .../libssl-dev_1.1.1-1ubuntu2.1~18.04.6_amd64.deb ... Unpacking libssl-dev:amd64 (1.1.1-1ubuntu2.1~18.04.6) ... Selecting previously unselected package libusb-1.0-0-dev:amd64. Preparing to unpack .../libusb-1.0-0-dev_2%3a1.0.21-2_amd64.deb ... Unpacking libusb-1.0-0-dev:amd64 (2:1.0.21-2) ... Selecting previously unselected package libusb-1.0-doc. Preparing to unpack .../libusb-1.0-doc_2%3a1.0.21-2_all.deb ... Unpacking libusb-1.0-doc (2:1.0.21-2) ... Setting up libusb-1.0-doc (2:1.0.21-2) ... Setting up libssl-dev:amd64 (1.1.1-1ubuntu2.1~18.04.6) ... Setting up libusb-1.0-0:amd64 (2:1.0.21-2) ... Setting up libusb-1.0-0-dev:amd64 (2:1.0.21-2) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Invoking 'apt-get clean' ---> 4e1b5694bae9 Removing intermediate container 1f8cf7ad29cd Step 28/31 : RUN echo "pkg-config: 0.29.1-0ubuntu2" && echo "ros-melodic-catkin: 0.7.23-1bionic.20200303.045725" && echo "udev: 237-3ubuntu10.41" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes pkg-config ros-melodic-catkin udev ---> Running in 9879cc7920a8 pkg-config: 0.29.1-0ubuntu2 ros-melodic-catkin: 0.7.23-1bionic.20200303.045725 udev: 237-3ubuntu10.41 Invoking 'apt-get update' Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease Reading package lists... Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes pkg-config ros-melodic-catkin udev' Reading package lists... Building dependency tree... Reading state information... Starting pkgProblemResolver with broken count: 0 Starting 2 pkgProblemResolver with broken count: 0 Done pkg-config is already the newest version (0.29.1-0ubuntu2). pkg-config set to manually installed. The following additional packages will be installed: cmake cmake-data docutils-common docutils-doc google-mock googletest libarchive13 libgtest-dev libjsoncpp1 libpaper-utils libpaper1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib librhash0 libudev1 libuv1 libwebp6 libwebpdemux2 libwebpmux3 python python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-minimal python-nose python-olefile python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six python2.7 python2.7-minimal sgml-base tzdata xml-core Suggested packages: cmake-doc ninja-build lrzip python-doc python-tk fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french texlive-latex-base texlive-latex-recommended python-coverage python-nose-doc python-pil-doc python-pil-dbg python-setuptools ttf-bitstream-vera python-pyparsing-doc python2.7-doc binfmt-support sgml-base-doc The following NEW packages will be installed: cmake cmake-data docutils-common docutils-doc google-mock googletest libarchive13 libgtest-dev libjsoncpp1 libpaper-utils libpaper1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib librhash0 libuv1 libwebp6 libwebpdemux2 libwebpmux3 python python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil python-docutils python-empy python-minimal python-nose python-olefile python-pil python-pkg-resources python-pygments python-pyparsing python-roman python-six python2.7 python2.7-minimal ros-melodic-catkin sgml-base tzdata udev xml-core The following packages will be upgraded: libudev1 1 upgraded, 42 newly installed, 0 to remove and 3 not upgraded. Need to get 14.3 MB of archives. After this operation, 77.1 MB of additional disk space will be used. Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04ubuntu1 [335 kB] Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04ubuntu1 [1,294 kB] Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB] Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04ubuntu1 [1,915 kB] Get:5 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg-modules all 0.4.20-1 [41.9 kB] Get:6 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg all 0.4.20-100 [3,512 B] Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04ubuntu1 [248 kB] Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B] Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB] Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libudev1 amd64 237-3ubuntu10.41 [56.8 kB] Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2020a-0ubuntu0.18.04 [190 kB] Get:13 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-catkin amd64 0.7.23-1bionic.20200303.045725 [126 kB] Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 udev amd64 237-3ubuntu10.41 [1,101 kB] Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake-data all 3.10.2-1ubuntu2.18.04.1 [1,332 kB] Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive13 amd64 3.2.2-3.1ubuntu0.6 [288 kB] Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjsoncpp1 amd64 1.7.4-3 [73.6 kB] Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 librhash0 amd64 1.3.6-2 [78.1 kB] Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libuv1 amd64 1.18.0-3 [64.4 kB] Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake amd64 3.10.2-1ubuntu2.18.04.1 [3,152 kB] Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-doc all 0.14+dfsg-3 [913 kB] Get:24 http://archive.ubuntu.com/ubuntu bionic/universe amd64 googletest amd64 1.8.0-6 [652 kB] Get:25 http://archive.ubuntu.com/ubuntu bionic/universe amd64 google-mock amd64 1.8.0-6 [2,972 B] Get:26 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgtest-dev amd64 1.8.0-6 [2,718 B] Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B] Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-six all 1.11.0-2 [11.3 kB] Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dateutil all 2.6.1-1 [60.6 kB] Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-roman all 2.0.0-3 [8,548 B] Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-docutils all 0.14+dfsg-3 [365 kB] Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pyparsing all 2.2.0+dfsg1-2 [52.1 kB] Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB] Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-chardet all 3.0.4-1 [80.3 kB] Get:39 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB] Get:40 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-nose all 1.3.7-3 [116 kB] Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-olefile all 0.45.1-1 [33.2 kB] Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-pil amd64 5.1.0-1ubuntu0.2 [329 kB] Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pygments all 2.2.0+dfsg-1 [577 kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 14.3 MB in 0s (35.2 MB/s) Selecting previously unselected package libpython2.7-minimal:amd64. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 67685 files and directories currently installed.) Preparing to unpack .../0-libpython2.7-minimal_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package python2.7-minimal. Preparing to unpack .../1-python2.7-minimal_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking python2.7-minimal (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package python-minimal. Preparing to unpack .../2-python-minimal_2.7.15~rc1-1_amd64.deb ... Unpacking python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package libpython2.7-stdlib:amd64. Preparing to unpack .../3-libpython2.7-stdlib_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package python2.7. Preparing to unpack .../4-python2.7_2.7.17-1~18.04ubuntu1_amd64.deb ... Unpacking python2.7 (2.7.17-1~18.04ubuntu1) ... Selecting previously unselected package libpython-stdlib:amd64. Preparing to unpack .../5-libpython-stdlib_2.7.15~rc1-1_amd64.deb ... Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1) ... Setting up python2.7-minimal (2.7.17-1~18.04ubuntu1) ... Setting up python-minimal (2.7.15~rc1-1) ... Selecting previously unselected package python. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 68434 files and directories currently installed.) Preparing to unpack .../python_2.7.15~rc1-1_amd64.deb ... Unpacking python (2.7.15~rc1-1) ... Selecting previously unselected package sgml-base. Preparing to unpack .../sgml-base_1.29_all.deb ... Unpacking sgml-base (1.29) ... Preparing to unpack .../libudev1_237-3ubuntu10.41_amd64.deb ... Unpacking libudev1:amd64 (237-3ubuntu10.41) over (237-3ubuntu10.39) ... Setting up libudev1:amd64 (237-3ubuntu10.41) ... Selecting previously unselected package tzdata. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 68514 files and directories currently installed.) Preparing to unpack .../00-tzdata_2020a-0ubuntu0.18.04_all.deb ... Unpacking tzdata (2020a-0ubuntu0.18.04) ... Selecting previously unselected package udev. Preparing to unpack .../01-udev_237-3ubuntu10.41_amd64.deb ... Unpacking udev (237-3ubuntu10.41) ... Selecting previously unselected package cmake-data. Preparing to unpack .../02-cmake-data_3.10.2-1ubuntu2.18.04.1_all.deb ... Unpacking cmake-data (3.10.2-1ubuntu2.18.04.1) ... Selecting previously unselected package libarchive13:amd64. Preparing to unpack .../03-libarchive13_3.2.2-3.1ubuntu0.6_amd64.deb ... Unpacking libarchive13:amd64 (3.2.2-3.1ubuntu0.6) ... Selecting previously unselected package libjsoncpp1:amd64. Preparing to unpack .../04-libjsoncpp1_1.7.4-3_amd64.deb ... Unpacking libjsoncpp1:amd64 (1.7.4-3) ... Selecting previously unselected package librhash0:amd64. Preparing to unpack .../05-librhash0_1.3.6-2_amd64.deb ... Unpacking librhash0:amd64 (1.3.6-2) ... Selecting previously unselected package libuv1:amd64. Preparing to unpack .../06-libuv1_1.18.0-3_amd64.deb ... Unpacking libuv1:amd64 (1.18.0-3) ... Selecting previously unselected package cmake. Preparing to unpack .../07-cmake_3.10.2-1ubuntu2.18.04.1_amd64.deb ... Unpacking cmake (3.10.2-1ubuntu2.18.04.1) ... Selecting previously unselected package xml-core. Preparing to unpack .../08-xml-core_0.18_all.deb ... Unpacking xml-core (0.18) ... Selecting previously unselected package docutils-common. Preparing to unpack .../09-docutils-common_0.14+dfsg-3_all.deb ... Unpacking docutils-common (0.14+dfsg-3) ... Selecting previously unselected package docutils-doc. Preparing to unpack .../10-docutils-doc_0.14+dfsg-3_all.deb ... Unpacking docutils-doc (0.14+dfsg-3) ... Selecting previously unselected package googletest:amd64. Preparing to unpack .../11-googletest_1.8.0-6_amd64.deb ... Unpacking googletest:amd64 (1.8.0-6) ... Selecting previously unselected package google-mock:amd64. Preparing to unpack .../12-google-mock_1.8.0-6_amd64.deb ... Unpacking google-mock:amd64 (1.8.0-6) ... Selecting previously unselected package libgtest-dev:amd64. Preparing to unpack .../13-libgtest-dev_1.8.0-6_amd64.deb ... Unpacking libgtest-dev:amd64 (1.8.0-6) ... Selecting previously unselected package libpaper1:amd64. Preparing to unpack .../14-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libpaper-utils. Preparing to unpack .../15-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... Selecting previously unselected package libwebp6:amd64. Preparing to unpack .../16-libwebp6_0.6.1-2_amd64.deb ... Unpacking libwebp6:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpdemux2:amd64. Preparing to unpack .../17-libwebpdemux2_0.6.1-2_amd64.deb ... Unpacking libwebpdemux2:amd64 (0.6.1-2) ... Selecting previously unselected package libwebpmux3:amd64. Preparing to unpack .../18-libwebpmux3_0.6.1-2_amd64.deb ... Unpacking libwebpmux3:amd64 (0.6.1-2) ... Selecting previously unselected package python-six. Preparing to unpack .../19-python-six_1.11.0-2_all.deb ... Unpacking python-six (1.11.0-2) ... Selecting previously unselected package python-dateutil. Preparing to unpack .../20-python-dateutil_2.6.1-1_all.deb ... Unpacking python-dateutil (2.6.1-1) ... Selecting previously unselected package python-roman. Preparing to unpack .../21-python-roman_2.0.0-3_all.deb ... Unpacking python-roman (2.0.0-3) ... Selecting previously unselected package python-docutils. Preparing to unpack .../22-python-docutils_0.14+dfsg-3_all.deb ... Unpacking python-docutils (0.14+dfsg-3) ... Selecting previously unselected package python-pyparsing. Preparing to unpack .../23-python-pyparsing_2.2.0+dfsg1-2_all.deb ... Unpacking python-pyparsing (2.2.0+dfsg1-2) ... Selecting previously unselected package python-catkin-pkg-modules. Preparing to unpack .../24-python-catkin-pkg-modules_0.4.20-1_all.deb ... Unpacking python-catkin-pkg-modules (0.4.20-1) ... Selecting previously unselected package python-catkin-pkg. Preparing to unpack .../25-python-catkin-pkg_0.4.20-100_all.deb ... Unpacking python-catkin-pkg (0.4.20-100) ... Selecting previously unselected package python-pkg-resources. Preparing to unpack .../26-python-pkg-resources_39.0.1-2_all.deb ... Unpacking python-pkg-resources (39.0.1-2) ... Selecting previously unselected package python-chardet. Preparing to unpack .../27-python-chardet_3.0.4-1_all.deb ... Unpacking python-chardet (3.0.4-1) ... Selecting previously unselected package python-empy. Preparing to unpack .../28-python-empy_3.3.2-1build1_all.deb ... Unpacking python-empy (3.3.2-1build1) ... Selecting previously unselected package python-nose. Preparing to unpack .../29-python-nose_1.3.7-3_all.deb ... Unpacking python-nose (1.3.7-3) ... Selecting previously unselected package python-olefile. Preparing to unpack .../30-python-olefile_0.45.1-1_all.deb ... Unpacking python-olefile (0.45.1-1) ... Selecting previously unselected package python-pil:amd64. Preparing to unpack .../31-python-pil_5.1.0-1ubuntu0.2_amd64.deb ... Unpacking python-pil:amd64 (5.1.0-1ubuntu0.2) ... Selecting previously unselected package python-pygments. Preparing to unpack .../32-python-pygments_2.2.0+dfsg-1_all.deb ... Unpacking python-pygments (2.2.0+dfsg-1) ... Selecting previously unselected package ros-melodic-catkin. Preparing to unpack .../33-ros-melodic-catkin_0.7.23-1bionic.20200303.045725_amd64.deb ... Unpacking ros-melodic-catkin (0.7.23-1bionic.20200303.045725) ... Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... Creating config file /etc/papersize with new version Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... Setting up libarchive13:amd64 (3.2.2-3.1ubuntu0.6) ... Setting up libuv1:amd64 (1.18.0-3) ... Setting up tzdata (2020a-0ubuntu0.18.04) ... Current default time zone: 'Etc/UTC' Local time is now: Fri Jun 5 16:17:12 UTC 2020. Universal Time is now: Fri Jun 5 16:17:12 UTC 2020. Run 'dpkg-reconfigure tzdata' if you wish to change it. Setting up cmake-data (3.10.2-1ubuntu2.18.04.1) ... Setting up sgml-base (1.29) ... Setting up librhash0:amd64 (1.3.6-2) ... Setting up udev (237-3ubuntu10.41) ... A chroot environment has been detected, udev not started. Setting up docutils-doc (0.14+dfsg-3) ... Setting up xml-core (0.18) ... Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1) ... Setting up libwebp6:amd64 (0.6.1-2) ... Setting up libjsoncpp1:amd64 (1.7.4-3) ... Setting up python2.7 (2.7.17-1~18.04ubuntu1) ... Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ... Setting up libwebpmux3:amd64 (0.6.1-2) ... Setting up libwebpdemux2:amd64 (0.6.1-2) ... Setting up cmake (3.10.2-1ubuntu2.18.04.1) ... Setting up python (2.7.15~rc1-1) ... Setting up python-pyparsing (2.2.0+dfsg1-2) ... Setting up python-pkg-resources (39.0.1-2) ... Setting up python-roman (2.0.0-3) ... Setting up python-six (1.11.0-2) ... Setting up googletest:amd64 (1.8.0-6) ... Setting up python-pygments (2.2.0+dfsg-1) ... Setting up python-empy (3.3.2-1build1) ... Setting up libgtest-dev:amd64 (1.8.0-6) ... Setting up python-olefile (0.45.1-1) ... Setting up python-nose (1.3.7-3) ... Setting up python-pil:amd64 (5.1.0-1ubuntu0.2) ... Setting up google-mock:amd64 (1.8.0-6) ... Setting up python-chardet (3.0.4-1) ... Setting up python-dateutil (2.6.1-1) ... Processing triggers for man-db (2.8.3-2ubuntu0.1) ... Processing triggers for shared-mime-info (1.9-2) ... Processing triggers for mime-support (3.60ubuntu1) ... Processing triggers for libc-bin (2.27-3ubuntu1) ... Processing triggers for sgml-base (1.29) ... Setting up docutils-common (0.14+dfsg-3) ... Processing triggers for sgml-base (1.29) ... Setting up python-docutils (0.14+dfsg-3) ... update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode Setting up python-catkin-pkg-modules (0.4.20-1) ... Setting up python-catkin-pkg (0.4.20-100) ... Setting up ros-melodic-catkin (0.7.23-1bionic.20200303.045725) ... Invoking 'apt-get clean' ---> 026059369b5c Removing intermediate container 9879cc7920a8 Step 29/31 : USER buildfarm ---> Running in dec36a507a82 ---> 261daafcbcea Removing intermediate container dec36a507a82 Step 30/31 : ENTRYPOINT sh -c ---> Running in 4fc745540570 ---> 7278eea63c2e Removing intermediate container 4fc745540570 Step 31/31 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic librealsense2_framos --sourcedeb-dir /tmp/binarydeb ---> Running in 65eab55a48e3 ---> 1eb41447b94d Removing intermediate container 65eab55a48e3 Successfully built 1eb41447b94d Successfully tagged binarydeb_build.melodic_ubuntu_bionic_amd64_librealsense2_framos:latest + echo # END SECTION # END SECTION + echo # BEGIN SECTION: Run Dockerfile - build binarydeb # BEGIN SECTION: Run Dockerfile - build binarydeb + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_librealsense2_framos # BEGIN SUBSECTION: build binarydeb Package 'ros-melodic-librealsense2-framos' version: 2.29.1-1bionic.20200605.161113 Invoking 'apt-src build ros-melodic-librealsense2-framos' in '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' I: Building in /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 .. dpkg-buildpackage: info: source package ros-melodic-librealsense2-framos dpkg-buildpackage: info: source version 2.29.1-1bionic.20200605.161113 dpkg-buildpackage: info: source distribution bionic dpkg-buildpackage: info: source changed by Marc Hanheide dpkg-buildpackage: info: host architecture amd64 dpkg-source --before-build ros-melodic-librealsense2-framos-2.29.1 dpkg-source: info: using options from ros-melodic-librealsense2-framos-2.29.1/debian/source/options: --auto-commit fakeroot debian/rules clean dh clean -v --buildsystem=cmake dh_testdir -O-v -O--buildsystem=cmake dh_auto_clean -O-v -O--buildsystem=cmake dh_clean -O-v -O--buildsystem=cmake rm -f debian/debhelper-build-stamp rm -rf debian/.debhelper/ rm -f -- debian/ros-melodic-librealsense2-framos.substvars debian/files rm -fr -- debian/ros-melodic-librealsense2-framos/ debian/tmp/ find . \( \( \ \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \ \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ \) -exec rm -f {} + \) -o \ \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) debian/rules build dh build -v --buildsystem=cmake dh_testdir -O-v -O--buildsystem=cmake dh_update_autotools_config -O-v -O--buildsystem=cmake debian/rules override_dh_auto_configure make[1]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_configure -- -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" install -d obj-x86_64-linux-gnu cd obj-x86_64-linux-gnu && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic -- The CXX compiler identification is GNU 7.5.0 -- The C compiler identification is GNU 7.5.0 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Check for working C compiler: /usr/bin/cc -- Check for working C compiler: /usr/bin/cc -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Internet connection identified -- Info: REALSENSE_VERSION_STRING=2.29.8 -- Performing Test COMPILER_SUPPORTS_CXX11 -- Performing Test COMPILER_SUPPORTS_CXX11 - Success -- Performing Test COMPILER_SUPPORTS_CXX0X -- Performing Test COMPILER_SUPPORTS_CXX0X - Success -- Setting Unix configurations -- using RS2_USE_V4L2_BACKEND -- Found usb: /usr/lib/x86_64-linux-gnu/libusb-1.0.so -- Found CameraSuite: /usr/lib/framos/camerasuite/libCameraSuite.so;/usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so (found version "4.2.0") -- GLFW 3.3 not found; using internal version -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - found -- Found Threads: TRUE -- Found Vulkan: /usr/lib/x86_64-linux-gnu/libvulkan.so -- Using X11 for window creation -- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so -- Looking for XOpenDisplay in /usr/lib/x86_64-linux-gnu/libX11.so;/usr/lib/x86_64-linux-gnu/libXext.so - found -- Looking for gethostbyname -- Looking for gethostbyname - found -- Looking for connect -- Looking for connect - found -- Looking for remove -- Looking for remove - found -- Looking for shmat -- Looking for shmat - found -- Looking for IceConnectionNumber in ICE -- Looking for IceConnectionNumber in ICE - found -- Found X11: /usr/lib/x86_64-linux-gnu/libX11.so -- Found OpenGL: /usr/lib/x86_64-linux-gnu/libOpenGL.so -- Could NOT find apriltag (missing: APRILTAG_INC APRILTAG_LIB) -- Unable to find apriltag library, skipping pose-apriltag example -- Building with TM2 -- Download TM2 firmware 0;"No error" for target-0.1.0.279.mvcmd -- Download TM2 firmware 0;"No error" for central_app-2.0.19.271.bin -- Download TM2 firmware 0;"No error" for central_bl-1.0.1.112.bin -- Fetching recommended firmwares: -- D4XX_RC_VERSION: 5.11.15.0 -- D4XX_FW_VERSION: 5.11.15.0 -- SR3XX_FW_VERSION: 3.26.1.0 -- Download firmware 0;"No error" for D4XX_FW_Image-5.11.15.0.bin -- Download firmware 0;"No error" for D4XX_RC_Image-5.11.15.0.bin -- Download firmware 0;"No error" for SR3XX_FW_Image-3.26.1.0.bin -- Configuring done -- Generating done CMake Warning: Manually-specified variables were not used by the project: CMAKE_EXPORT_NO_PACKAGE_REGISTRY -- Build files have been written to: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' debian/rules override_dh_auto_build make[1]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_build cd obj-x86_64-linux-gnu && make -j1 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 -B/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/libtm/fw/CMakeFiles/fw.dir/build.make third-party/libtm/fw/CMakeFiles/fw.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw/CMakeFiles/fw.dir/DependInfo.cmake --color= Scanning dependencies of target fw make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/libtm/fw/CMakeFiles/fw.dir/build.make third-party/libtm/fw/CMakeFiles/fw.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 0%] Building C object third-party/libtm/fw/CMakeFiles/fw.dir/empty.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/fw.dir/empty.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/fw/empty.c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/fw/empty.c:1:0: warning: ISO C forbids an empty translation unit [-Wpedantic] [ 0%] Building C object third-party/libtm/fw/CMakeFiles/fw.dir/fw_target.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/fw.dir/fw_target.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw/fw_target.c [ 0%] Building C object third-party/libtm/fw/CMakeFiles/fw.dir/fw_central_app.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/fw.dir/fw_central_app.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw/fw_central_app.c [ 1%] Building C object third-party/libtm/fw/CMakeFiles/fw.dir/fw_central_bl.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/fw.dir/fw_central_bl.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw/fw_central_bl.c [ 1%] Linking C static library libfw.a cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw && /usr/bin/cmake -P CMakeFiles/fw.dir/cmake_clean_target.cmake cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw && /usr/bin/cmake -E cmake_link_script CMakeFiles/fw.dir/link.txt --verbose=1 ccache /usr/bin/ar qc libfw.a CMakeFiles/fw.dir/empty.c.o CMakeFiles/fw.dir/fw_target.c.o CMakeFiles/fw.dir/fw_central_app.c.o CMakeFiles/fw.dir/fw_central_bl.c.o ccache /usr/bin/ranlib libfw.a make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 1%] Built target fw make -f third-party/libtm/libtm/src/CMakeFiles/tm.dir/build.make third-party/libtm/libtm/src/CMakeFiles/tm.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src/CMakeFiles/tm.dir/DependInfo.cmake --color= Scanning dependencies of target tm make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/libtm/libtm/src/CMakeFiles/tm.dir/build.make third-party/libtm/libtm/src/CMakeFiles/tm.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 1%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/Manager.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/Manager.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/Manager.cpp [ 2%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/Device.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/Device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/Device.cpp [ 2%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/UsbPlugListener.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/UsbPlugListener.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/UsbPlugListener.cpp [ 2%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/Common.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/Common.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/Common.cpp [ 3%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Log.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Log.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Log.cpp [ 3%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Dispatcher.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Dispatcher.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Dispatcher.cpp [ 3%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Fsm.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Fsm.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Fsm.cpp [ 4%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Utils.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Utils.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Utils.cpp [ 4%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Event_lin.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Event_lin.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Event_lin.cpp [ 4%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Event_bsd.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Event_bsd.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Event_bsd.cpp [ 5%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Event_win.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Event_win.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Event_win.cpp [ 5%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Poller_lin.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Poller_lin.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Poller_lin.cpp [ 5%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Poller_win.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Poller_win.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Poller_win.cpp [ 6%] Building CXX object third-party/libtm/libtm/src/CMakeFiles/tm.dir/infra/Poller_bsd.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/tm.dir/infra/Poller_bsd.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/infra/Poller_bsd.cpp [ 6%] Linking CXX static library libtm.a cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && /usr/bin/cmake -P CMakeFiles/tm.dir/cmake_clean_target.cmake cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/tm.dir/link.txt --verbose=1 ccache /usr/bin/ar qc libtm.a CMakeFiles/tm.dir/Manager.cpp.o CMakeFiles/tm.dir/Device.cpp.o CMakeFiles/tm.dir/UsbPlugListener.cpp.o CMakeFiles/tm.dir/Common.cpp.o CMakeFiles/tm.dir/infra/Log.cpp.o CMakeFiles/tm.dir/infra/Dispatcher.cpp.o CMakeFiles/tm.dir/infra/Fsm.cpp.o CMakeFiles/tm.dir/infra/Utils.cpp.o CMakeFiles/tm.dir/infra/Event_lin.cpp.o CMakeFiles/tm.dir/infra/Event_bsd.cpp.o CMakeFiles/tm.dir/infra/Event_win.cpp.o CMakeFiles/tm.dir/infra/Poller_lin.cpp.o CMakeFiles/tm.dir/infra/Poller_win.cpp.o CMakeFiles/tm.dir/infra/Poller_bsd.cpp.o ccache /usr/bin/ranlib libtm.a make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 6%] Built target tm make -f third-party/realsense-file/CMakeFiles/realsense-file.dir/build.make third-party/realsense-file/CMakeFiles/realsense-file.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file/CMakeFiles/realsense-file.dir/DependInfo.cmake --color= Scanning dependencies of target realsense-file make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/realsense-file/CMakeFiles/realsense-file.dir/build.make third-party/realsense-file/CMakeFiles/realsense-file.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 6%] Building C object third-party/realsense-file/CMakeFiles/realsense-file.dir/lz4/lz4.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/realsense-file.dir/lz4/lz4.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.h:339, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c:91: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 6%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/console_bridge/src/console.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/console_bridge/src/console.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/src/console.cpp [ 7%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/cpp_common/src/debug.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/cpp_common/src/debug.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/src/debug.cpp [ 7%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/cpp_common/src/header.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/cpp_common/src/header.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/src/header.cpp [ 7%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/bag.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/bag.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag.cpp [ 8%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/bag_player.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/bag_player.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag_player.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag_player.cpp:1:0: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag_player.h:81:42: warning: dynamic exception specifications are deprecated in C++11 [-Wdeprecated] BagPlayer(const std::string &filename) throw(BagException); ^~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag_player.cpp:8:48: warning: dynamic exception specifications are deprecated in C++11 [-Wdeprecated] BagPlayer::BagPlayer(const std::string &fname) throw(BagException) { ^~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/maybe_include.hpp:18:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/function_iterate.hpp:14, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/preprocessor/iteration/detail/iter/forward1.hpp:52, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function.hpp:64, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include/ros/message_event.h:42, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag.h:50, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag_player.h:40, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag_player.cpp:1: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp: In instantiation of ‘void boost::detail::function::basic_vtable1::assign_functor(FunctionObj, boost::detail::function::function_buffer&, mpl_::true_) const [with FunctionObj = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; mpl_::true_ = mpl_::bool_]’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:608:27: required from ‘bool boost::detail::function::basic_vtable1::assign_to(FunctionObj, boost::detail::function::function_buffer&, boost::detail::function::function_obj_tag) const [with FunctionObj = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:498:27: required from ‘bool boost::detail::function::basic_vtable1::assign_to(F, boost::detail::function::function_buffer&) const [with F = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:942:7: required from ‘void boost::function1::assign_to(Functor) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:728:7: required from ‘boost::function1::function1(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:1077:16: required from ‘boost::function::function(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag_player.cpp:50:60: required from here /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:572:11: warning: placement new constructing an object of type ‘rosbag::TopicQuery’ and size ‘24’ in a region of type ‘char’ and size ‘1’ [-Wplacement-new=] new (reinterpret_cast(&functor.data)) FunctionObj(f); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/prologue.hpp:17:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function.hpp:24, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include/ros/message_event.h:42, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag.h:50, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag_player.h:40, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag_player.cpp:1: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp: In instantiation of ‘static void boost::detail::function::functor_manager_common::manage_small(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type) [with Functor = rosbag::TopicQuery]’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:364:56: required from ‘static void boost::detail::function::functor_manager::manager(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type, mpl_::true_) [with Functor = rosbag::TopicQuery; mpl_::true_ = mpl_::bool_]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:412:18: required from ‘static void boost::detail::function::functor_manager::manager(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type, boost::detail::function::function_obj_tag) [with Functor = rosbag::TopicQuery]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:440:20: required from ‘static void boost::detail::function::functor_manager::manage(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type) [with Functor = rosbag::TopicQuery]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:940:13: required from ‘void boost::function1::assign_to(Functor) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:728:7: required from ‘boost::function1::function1(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:1077:16: required from ‘boost::function::function(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/bag_player.cpp:50:60: required from here /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:318:13: warning: placement new constructing an object of type ‘boost::detail::function::functor_manager_common::functor_type {aka rosbag::TopicQuery}’ and size ‘24’ in a region of type ‘char’ and size ‘1’ [-Wplacement-new=] new (reinterpret_cast(&out_buffer.data)) functor_type(*in_functor); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [ 8%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/buffer.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/buffer.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/buffer.cpp [ 8%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/chunked_file.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/chunked_file.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/chunked_file.cpp [ 9%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/lz4_stream.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/lz4_stream.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/lz4_stream.cpp [ 9%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/message_instance.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/message_instance.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/message_instance.cpp [ 9%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/query.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/query.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/query.cpp [ 10%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/stream.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/stream.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/stream.cpp [ 10%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/uncompressed_stream.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/uncompressed_stream.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/uncompressed_stream.cpp [ 10%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/view.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/view.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/src/view.cpp [ 11%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/roscpp_serialization/src/serialization.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/roscpp_serialization/src/serialization.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/src/serialization.cpp [ 11%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rostime/src/duration.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rostime/src/duration.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/src/duration.cpp [ 11%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rostime/src/rate.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rostime/src/rate.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/src/rate.cpp [ 12%] Building CXX object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/rostime/src/time.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-file.dir/rosbag/rostime/src/time.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/src/time.cpp /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/src/time.cpp:99:5: warning: dynamic exception specifications are deprecated in C++11 [-Wdeprecated] throw(NoHighPerformanceTimersException) ^~~~~ [ 12%] Building C object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/roslz4/src/lz4s.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/realsense-file.dir/rosbag/roslz4/src/lz4s.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/src/lz4s.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include/roslz4/../../../../lz4/lz4.h:339, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include/roslz4/lz4s.h:38, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/src/lz4s.c:35: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 12%] Building C object third-party/realsense-file/CMakeFiles/realsense-file.dir/rosbag/roslz4/src/xxhash.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/realsense-file.dir/rosbag/roslz4/src/xxhash.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/src/xxhash.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdlib.h:25, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/src/xxhash.c:87: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 13%] Linking CXX static library librealsense-file.a cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && /usr/bin/cmake -P CMakeFiles/realsense-file.dir/cmake_clean_target.cmake cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file && /usr/bin/cmake -E cmake_link_script CMakeFiles/realsense-file.dir/link.txt --verbose=1 ccache /usr/bin/ar qc librealsense-file.a CMakeFiles/realsense-file.dir/lz4/lz4.c.o CMakeFiles/realsense-file.dir/rosbag/console_bridge/src/console.cpp.o CMakeFiles/realsense-file.dir/rosbag/cpp_common/src/debug.cpp.o CMakeFiles/realsense-file.dir/rosbag/cpp_common/src/header.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/bag.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/bag_player.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/buffer.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/chunked_file.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/lz4_stream.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/message_instance.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/query.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/stream.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/uncompressed_stream.cpp.o CMakeFiles/realsense-file.dir/rosbag/rosbag_storage/src/view.cpp.o CMakeFiles/realsense-file.dir/rosbag/roscpp_serialization/src/serialization.cpp.o CMakeFiles/realsense-file.dir/rosbag/rostime/src/duration.cpp.o CMakeFiles/realsense-file.dir/rosbag/rostime/src/rate.cpp.o CMakeFiles/realsense-file.dir/rosbag/rostime/src/time.cpp.o CMakeFiles/realsense-file.dir/rosbag/roslz4/src/lz4s.c.o CMakeFiles/realsense-file.dir/rosbag/roslz4/src/xxhash.c.o ccache /usr/bin/ranlib librealsense-file.a make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 13%] Built target realsense-file make -f CMakeFiles/realsense2-framos.dir/build.make CMakeFiles/realsense2-framos.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles/realsense2-framos.dir/DependInfo.cmake --color= Scanning dependencies of target realsense2-framos make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f CMakeFiles/realsense2-framos.dir/build.make CMakeFiles/realsense2-framos.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 14%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-options.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-options.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-options.cpp [ 14%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-timestamp.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-timestamp.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-timestamp.cpp [ 14%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-private.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-private.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-private.cpp [ 14%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-motion.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-motion.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-motion.cpp [ 15%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-nonmonochrome.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-nonmonochrome.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-nonmonochrome.cpp [ 15%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-device.cpp [ 15%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-color.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-color.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-color.cpp [ 16%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-active.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-active.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-active.cpp [ 16%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-factory.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-factory.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-factory.cpp [ 16%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/ds5-fw-update-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-fw-update-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/ds5-fw-update-device.cpp [ 17%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/rs_advanced_mode.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/rs_advanced_mode.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/advanced_mode/rs_advanced_mode.cpp [ 17%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/presets.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/presets.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/advanced_mode/presets.cpp [ 17%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/advanced_mode.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/advanced_mode.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ds5/advanced_mode/advanced_mode.cpp [ 18%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ivcam/ivcam-private.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ivcam/ivcam-private.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ivcam/ivcam-private.cpp [ 18%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ivcam/sr300.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ivcam/sr300.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ivcam/sr300.cpp [ 18%] Building CXX object CMakeFiles/realsense2-framos.dir/src/ivcam/sr300-fw-update-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/ivcam/sr300-fw-update-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/ivcam/sr300-fw-update-device.cpp [ 19%] Building CXX object CMakeFiles/realsense2-framos.dir/src/l500/l500-depth.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/l500/l500-depth.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/l500/l500-depth.cpp [ 19%] Building CXX object CMakeFiles/realsense2-framos.dir/src/l500/l500-private.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/l500/l500-private.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/l500/l500-private.cpp [ 19%] Building CXX object CMakeFiles/realsense2-framos.dir/src/l500/l500-color.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/l500/l500-color.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/l500/l500-color.cpp [ 20%] Building CXX object CMakeFiles/realsense2-framos.dir/src/l500/l500-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/l500/l500-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/l500/l500-device.cpp [ 20%] Building CXX object CMakeFiles/realsense2-framos.dir/src/l500/l500-motion.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/l500/l500-motion.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/l500/l500-motion.cpp [ 20%] Building CXX object CMakeFiles/realsense2-framos.dir/src/l500/l500-factory.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/l500/l500-factory.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/l500/l500-factory.cpp [ 21%] Building CXX object CMakeFiles/realsense2-framos.dir/src/l500/l500-fw-update-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/l500/l500-fw-update-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/l500/l500-fw-update-device.cpp [ 21%] Building CXX object CMakeFiles/realsense2-framos.dir/src/media/record/record_device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/media/record/record_device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/record/record_device.cpp [ 21%] Building CXX object CMakeFiles/realsense2-framos.dir/src/media/record/record_sensor.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/media/record/record_sensor.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/record/record_sensor.cpp [ 22%] Building CXX object CMakeFiles/realsense2-framos.dir/src/media/playback/playback_device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/media/playback/playback_device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/playback/playback_device.cpp [ 22%] Building CXX object CMakeFiles/realsense2-framos.dir/src/media/playback/playback_sensor.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/media/playback/playback_sensor.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/playback/playback_sensor.cpp [ 22%] Building CXX object CMakeFiles/realsense2-framos.dir/src/media/ros/ros_reader.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/media/ros/ros_reader.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_reader.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/maybe_include.hpp:18:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/function_iterate.hpp:14, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/preprocessor/iteration/detail/iter/forward1.hpp:52, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function.hpp:64, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include/ros/message_event.h:42, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag.h:50, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/message_instance.h:150, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/view.h:41, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_reader.h:6, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_reader.cpp:5: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp: In instantiation of ‘void boost::detail::function::basic_vtable1::assign_functor(FunctionObj, boost::detail::function::function_buffer&, mpl_::true_) const [with FunctionObj = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; mpl_::true_ = mpl_::bool_]’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:608:27: required from ‘bool boost::detail::function::basic_vtable1::assign_to(FunctionObj, boost::detail::function::function_buffer&, boost::detail::function::function_obj_tag) const [with FunctionObj = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:498:27: required from ‘bool boost::detail::function::basic_vtable1::assign_to(F, boost::detail::function::function_buffer&) const [with F = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:942:7: required from ‘void boost::function1::assign_to(Functor) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:728:7: required from ‘boost::function1::function1(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:1077:16: required from ‘boost::function::function(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_reader.cpp:108:93: required from here /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:572:11: warning: placement new constructing an object of type ‘rosbag::TopicQuery’ and size ‘24’ in a region of type ‘char’ and size ‘1’ [-Wplacement-new=] new (reinterpret_cast(&functor.data)) FunctionObj(f); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/prologue.hpp:17:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function.hpp:24, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include/ros/message_event.h:42, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag.h:50, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/message_instance.h:150, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/view.h:41, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_reader.h:6, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_reader.cpp:5: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp: In instantiation of ‘static void boost::detail::function::functor_manager_common::manage_small(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type) [with Functor = rosbag::TopicQuery]’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:364:56: required from ‘static void boost::detail::function::functor_manager::manager(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type, mpl_::true_) [with Functor = rosbag::TopicQuery; mpl_::true_ = mpl_::bool_]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:412:18: required from ‘static void boost::detail::function::functor_manager::manager(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type, boost::detail::function::function_obj_tag) [with Functor = rosbag::TopicQuery]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:440:20: required from ‘static void boost::detail::function::functor_manager::manage(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type) [with Functor = rosbag::TopicQuery]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:940:13: required from ‘void boost::function1::assign_to(Functor) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:728:7: required from ‘boost::function1::function1(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:1077:16: required from ‘boost::function::function(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_reader.cpp:108:93: required from here /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:318:13: warning: placement new constructing an object of type ‘boost::detail::function::functor_manager_common::functor_type {aka rosbag::TopicQuery}’ and size ‘24’ in a region of type ‘char’ and size ‘1’ [-Wplacement-new=] new (reinterpret_cast(&out_buffer.data)) functor_type(*in_functor); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [ 23%] Building CXX object CMakeFiles/realsense2-framos.dir/src/media/ros/ros_writer.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/media/ros/ros_writer.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/media/ros/ros_writer.cpp [ 23%] Building CXX object CMakeFiles/realsense2-framos.dir/src/mock/sql.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/mock/sql.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/mock/sql.cpp [ 23%] Building CXX object CMakeFiles/realsense2-framos.dir/src/mock/recorder.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/mock/recorder.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/mock/recorder.cpp [ 24%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/sse/sse-align.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/sse/sse-align.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/sse/sse-align.cpp [ 24%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/sse/sse-pointcloud.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/sse/sse-pointcloud.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/sse/sse-pointcloud.cpp [ 24%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/processing-blocks-factory.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/processing-blocks-factory.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/processing-blocks-factory.cpp [ 25%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/align.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/align.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/align.cpp [ 25%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/colorizer.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/colorizer.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/colorizer.cpp [ 25%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/pointcloud.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/pointcloud.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/pointcloud.cpp [ 26%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/occlusion-filter.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/occlusion-filter.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/occlusion-filter.cpp [ 26%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/synthetic-stream.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/synthetic-stream.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/synthetic-stream.cpp [ 26%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/syncer-processing-block.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/syncer-processing-block.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/syncer-processing-block.cpp [ 27%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/decimation-filter.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/decimation-filter.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/decimation-filter.cpp [ 27%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/spatial-filter.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/spatial-filter.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/spatial-filter.cpp [ 27%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/temporal-filter.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/temporal-filter.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/temporal-filter.cpp [ 28%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/hole-filling-filter.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/hole-filling-filter.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/hole-filling-filter.cpp [ 28%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/disparity-transform.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/disparity-transform.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/disparity-transform.cpp [ 28%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/yuy2rgb.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/yuy2rgb.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/yuy2rgb.cpp [ 29%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/threshold.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/threshold.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/threshold.cpp [ 29%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/rates-printer.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/rates-printer.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/rates-printer.cpp [ 29%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/zero-order.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/zero-order.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/zero-order.cpp [ 30%] Building CXX object CMakeFiles/realsense2-framos.dir/src/proc/units-transform.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/proc/units-transform.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/proc/units-transform.cpp [ 30%] Building CXX object CMakeFiles/realsense2-framos.dir/src/pipeline/pipeline.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/pipeline/pipeline.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/pipeline/pipeline.cpp [ 30%] Building CXX object CMakeFiles/realsense2-framos.dir/src/pipeline/config.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/pipeline/config.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/pipeline/config.cpp [ 31%] Building CXX object CMakeFiles/realsense2-framos.dir/src/pipeline/profile.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/pipeline/profile.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/pipeline/profile.cpp [ 31%] Building CXX object CMakeFiles/realsense2-framos.dir/src/pipeline/aggregator.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/pipeline/aggregator.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/pipeline/aggregator.cpp [ 31%] Building CXX object CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/fw-update/fw-update-device.cpp [ 32%] Building CXX object CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-factory.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-factory.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/fw-update/fw-update-factory.cpp [ 32%] Building CXX object CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-unsigned.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-unsigned.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/fw-update/fw-update-unsigned.cpp [ 32%] Building CXX object CMakeFiles/realsense2-framos.dir/src/cs/cs-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/cs/cs-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/cs/cs-device.cpp [ 33%] Building CXX object CMakeFiles/realsense2-framos.dir/src/cs/cs-sensor.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/cs/cs-sensor.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/cs/cs-sensor.cpp [ 33%] Building CXX object CMakeFiles/realsense2-framos.dir/src/cs/cs-factory.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/cs/cs-factory.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/cs/cs-factory.cpp [ 33%] Building CXX object CMakeFiles/realsense2-framos.dir/src/cs/cs-timestamp.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/cs/cs-timestamp.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/cs/cs-timestamp.cpp [ 34%] Building CXX object CMakeFiles/realsense2-framos.dir/src/libusb/interface-libusb.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/libusb/interface-libusb.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/interface-libusb.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/endpoint-libusb.h:8:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/interface-libusb.h:6, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/interface-libusb.cpp:6: /usr/include/libusb-1.0/libusb.h:736:4: warning: ISO C++ forbids zero-size array ‘dev_capability_data’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:767:4: warning: ISO C++ forbids zero-size array ‘dev_capability’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:1263:4: warning: ISO C++ forbids zero-size array ‘iso_packet_desc’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ [ 34%] Building CXX object CMakeFiles/realsense2-framos.dir/src/libusb/device-libusb.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/libusb/device-libusb.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/device-libusb.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/endpoint-libusb.h:8:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/messenger-libusb.h:10, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/device-libusb.h:7, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/device-libusb.cpp:4: /usr/include/libusb-1.0/libusb.h:736:4: warning: ISO C++ forbids zero-size array ‘dev_capability_data’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:767:4: warning: ISO C++ forbids zero-size array ‘dev_capability’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:1263:4: warning: ISO C++ forbids zero-size array ‘iso_packet_desc’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ [ 34%] Building CXX object CMakeFiles/realsense2-framos.dir/src/libusb/messenger-libusb.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/libusb/messenger-libusb.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/messenger-libusb.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/endpoint-libusb.h:8:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/messenger-libusb.h:10, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/messenger-libusb.cpp:4: /usr/include/libusb-1.0/libusb.h:736:4: warning: ISO C++ forbids zero-size array ‘dev_capability_data’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:767:4: warning: ISO C++ forbids zero-size array ‘dev_capability’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:1263:4: warning: ISO C++ forbids zero-size array ‘iso_packet_desc’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ [ 34%] Building CXX object CMakeFiles/realsense2-framos.dir/src/libusb/enumerator-libusb.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/libusb/enumerator-libusb.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/enumerator-libusb.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/endpoint-libusb.h:8:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/messenger-libusb.h:10, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/device-libusb.h:7, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/libusb/enumerator-libusb.cpp:5: /usr/include/libusb-1.0/libusb.h:736:4: warning: ISO C++ forbids zero-size array ‘dev_capability_data’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:767:4: warning: ISO C++ forbids zero-size array ‘dev_capability’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ /usr/include/libusb-1.0/libusb.h:1263:4: warning: ISO C++ forbids zero-size array ‘iso_packet_desc’ [-Wpedantic] [0] /* non-standard, but usually working code */ ^ [ 35%] Building CXX object CMakeFiles/realsense2-framos.dir/src/linux/backend-v4l2.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/linux/backend-v4l2.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/linux/backend-v4l2.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/linux/backend-v4l2.cpp:4:0: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/linux/backend-v4l2.h:51:111: note: #pragma message: Librealsense notification: V4L2_META_FMT_UVC was not defined, adding metadata constructs #pragma message ( "\nLibrealsense notification: V4L2_META_FMT_UVC was not defined, adding metadata constructs") ^ [ 35%] Building CXX object CMakeFiles/realsense2-framos.dir/src/linux/backend-hid.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/linux/backend-hid.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/linux/backend-hid.cpp [ 35%] Building CXX object CMakeFiles/realsense2-framos.dir/src/tm2/tm-context.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/tm2/tm-context.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/tm2/tm-context.cpp [ 36%] Building CXX object CMakeFiles/realsense2-framos.dir/src/tm2/tm-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/tm2/tm-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/tm2/tm-device.cpp [ 36%] Building CXX object CMakeFiles/realsense2-framos.dir/src/tm2/tm-info.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/tm2/tm-info.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/tm2/tm-info.cpp [ 36%] Building CXX object CMakeFiles/realsense2-framos.dir/src/algo.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/algo.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/algo.cpp [ 37%] Building CXX object CMakeFiles/realsense2-framos.dir/src/archive.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/archive.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/archive.cpp [ 37%] Building CXX object CMakeFiles/realsense2-framos.dir/src/backend.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/backend.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/backend.cpp [ 37%] Building CXX object CMakeFiles/realsense2-framos.dir/src/context.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/context.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/context.cpp [ 38%] Building CXX object CMakeFiles/realsense2-framos.dir/src/d400e.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/d400e.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/d400e.cpp [ 38%] Building CXX object CMakeFiles/realsense2-framos.dir/src/device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/device.cpp [ 38%] Building CXX object CMakeFiles/realsense2-framos.dir/src/device_hub.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/device_hub.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/device_hub.cpp [ 39%] Building CXX object CMakeFiles/realsense2-framos.dir/src/environment.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/environment.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/environment.cpp [ 39%] Building CXX object CMakeFiles/realsense2-framos.dir/src/error-handling.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/error-handling.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/error-handling.cpp [ 39%] Building CXX object CMakeFiles/realsense2-framos.dir/src/global_timestamp_reader.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/global_timestamp_reader.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/global_timestamp_reader.cpp [ 40%] Building CXX object CMakeFiles/realsense2-framos.dir/src/hw-monitor.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/hw-monitor.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/hw-monitor.cpp [ 40%] Building CXX object CMakeFiles/realsense2-framos.dir/src/image.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/image.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/image.cpp [ 40%] Building CXX object CMakeFiles/realsense2-framos.dir/src/image-avx.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/image-avx.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/image-avx.cpp [ 41%] Building CXX object CMakeFiles/realsense2-framos.dir/src/log.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/log.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/log.cpp [ 41%] Building CXX object CMakeFiles/realsense2-framos.dir/src/option.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/option.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/option.cpp [ 41%] Building CXX object CMakeFiles/realsense2-framos.dir/src/rs.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/rs.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/rs.cpp [ 42%] Building CXX object CMakeFiles/realsense2-framos.dir/src/sensor.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/sensor.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/sensor.cpp [ 42%] Building CXX object CMakeFiles/realsense2-framos.dir/src/software-device.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/software-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/software-device.cpp [ 42%] Building CXX object CMakeFiles/realsense2-framos.dir/src/source.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/source.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/source.cpp [ 43%] Building CXX object CMakeFiles/realsense2-framos.dir/src/stream.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/stream.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/stream.cpp [ 43%] Building CXX object CMakeFiles/realsense2-framos.dir/src/sync.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/sync.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/sync.cpp [ 43%] Building CXX object CMakeFiles/realsense2-framos.dir/src/types.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/types.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/types.cpp [ 44%] Building C object CMakeFiles/realsense2-framos.dir/src/verify.c.o ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -o CMakeFiles/realsense2-framos.dir/src/verify.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/verify.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/../include/librealsense2-framos/h/rs_advanced_mode_command.h:12, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/../include/librealsense2-framos/rs_advanced_mode.h:8, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/verify.c:6: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 44%] Building CXX object CMakeFiles/realsense2-framos.dir/src/frame-validator.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/src/frame-validator.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/frame-validator.cpp [ 44%] Building C object CMakeFiles/realsense2-framos.dir/third-party/sqlite/sqlite3.c.o ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -o CMakeFiles/realsense2-framos.dir/third-party/sqlite/sqlite3.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/sqlite/sqlite3.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/sqlite/sqlite3.c:11272: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 45%] Building CXX object CMakeFiles/realsense2-framos.dir/third-party/easyloggingpp/src/easylogging++.cc.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/third-party/easyloggingpp/src/easylogging++.cc.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/easyloggingpp/src/easylogging++.cc [ 45%] Building CXX object CMakeFiles/realsense2-framos.dir/usr/include/framos/camerasuite/smcs_cpp/CameraSDK.cpp.o ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DBUILD_STATIC=1 -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -DWITH_TRACKING=1 -Drealsense2_framos_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/usr/include/framos/camerasuite -I/usr/include/libusb-1.0 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src/../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos.dir/usr/include/framos/camerasuite/smcs_cpp/CameraSDK.cpp.o -c /usr/include/framos/camerasuite/smcs_cpp/CameraSDK.cpp [ 45%] Linking CXX shared library librealsense2-framos.so /usr/bin/cmake -E cmake_link_script CMakeFiles/realsense2-framos.dir/link.txt --verbose=1 ccache /usr/bin/c++ -fPIC -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -shared -Wl,-soname,librealsense2-framos.so.2.29 -o librealsense2-framos.so.2.29.8 CMakeFiles/realsense2-framos.dir/src/ds5/ds5-options.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-timestamp.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-private.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-motion.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-nonmonochrome.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-device.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-color.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-active.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-factory.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/ds5-fw-update-device.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/rs_advanced_mode.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/presets.cpp.o CMakeFiles/realsense2-framos.dir/src/ds5/advanced_mode/advanced_mode.cpp.o CMakeFiles/realsense2-framos.dir/src/ivcam/ivcam-private.cpp.o CMakeFiles/realsense2-framos.dir/src/ivcam/sr300.cpp.o CMakeFiles/realsense2-framos.dir/src/ivcam/sr300-fw-update-device.cpp.o CMakeFiles/realsense2-framos.dir/src/l500/l500-depth.cpp.o CMakeFiles/realsense2-framos.dir/src/l500/l500-private.cpp.o CMakeFiles/realsense2-framos.dir/src/l500/l500-color.cpp.o CMakeFiles/realsense2-framos.dir/src/l500/l500-device.cpp.o CMakeFiles/realsense2-framos.dir/src/l500/l500-motion.cpp.o CMakeFiles/realsense2-framos.dir/src/l500/l500-factory.cpp.o CMakeFiles/realsense2-framos.dir/src/l500/l500-fw-update-device.cpp.o CMakeFiles/realsense2-framos.dir/src/media/record/record_device.cpp.o CMakeFiles/realsense2-framos.dir/src/media/record/record_sensor.cpp.o CMakeFiles/realsense2-framos.dir/src/media/playback/playback_device.cpp.o CMakeFiles/realsense2-framos.dir/src/media/playback/playback_sensor.cpp.o CMakeFiles/realsense2-framos.dir/src/media/ros/ros_reader.cpp.o CMakeFiles/realsense2-framos.dir/src/media/ros/ros_writer.cpp.o CMakeFiles/realsense2-framos.dir/src/mock/sql.cpp.o CMakeFiles/realsense2-framos.dir/src/mock/recorder.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/sse/sse-align.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/sse/sse-pointcloud.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/processing-blocks-factory.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/align.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/colorizer.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/pointcloud.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/occlusion-filter.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/synthetic-stream.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/syncer-processing-block.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/decimation-filter.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/spatial-filter.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/temporal-filter.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/hole-filling-filter.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/disparity-transform.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/yuy2rgb.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/threshold.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/rates-printer.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/zero-order.cpp.o CMakeFiles/realsense2-framos.dir/src/proc/units-transform.cpp.o CMakeFiles/realsense2-framos.dir/src/pipeline/pipeline.cpp.o CMakeFiles/realsense2-framos.dir/src/pipeline/config.cpp.o CMakeFiles/realsense2-framos.dir/src/pipeline/profile.cpp.o CMakeFiles/realsense2-framos.dir/src/pipeline/aggregator.cpp.o CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-device.cpp.o CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-factory.cpp.o CMakeFiles/realsense2-framos.dir/src/fw-update/fw-update-unsigned.cpp.o CMakeFiles/realsense2-framos.dir/src/cs/cs-device.cpp.o CMakeFiles/realsense2-framos.dir/src/cs/cs-sensor.cpp.o CMakeFiles/realsense2-framos.dir/src/cs/cs-factory.cpp.o CMakeFiles/realsense2-framos.dir/src/cs/cs-timestamp.cpp.o CMakeFiles/realsense2-framos.dir/src/libusb/interface-libusb.cpp.o CMakeFiles/realsense2-framos.dir/src/libusb/device-libusb.cpp.o CMakeFiles/realsense2-framos.dir/src/libusb/messenger-libusb.cpp.o CMakeFiles/realsense2-framos.dir/src/libusb/enumerator-libusb.cpp.o CMakeFiles/realsense2-framos.dir/src/linux/backend-v4l2.cpp.o CMakeFiles/realsense2-framos.dir/src/linux/backend-hid.cpp.o CMakeFiles/realsense2-framos.dir/src/tm2/tm-context.cpp.o CMakeFiles/realsense2-framos.dir/src/tm2/tm-device.cpp.o CMakeFiles/realsense2-framos.dir/src/tm2/tm-info.cpp.o CMakeFiles/realsense2-framos.dir/src/algo.cpp.o CMakeFiles/realsense2-framos.dir/src/archive.cpp.o CMakeFiles/realsense2-framos.dir/src/backend.cpp.o CMakeFiles/realsense2-framos.dir/src/context.cpp.o CMakeFiles/realsense2-framos.dir/src/d400e.cpp.o CMakeFiles/realsense2-framos.dir/src/device.cpp.o CMakeFiles/realsense2-framos.dir/src/device_hub.cpp.o CMakeFiles/realsense2-framos.dir/src/environment.cpp.o CMakeFiles/realsense2-framos.dir/src/error-handling.cpp.o CMakeFiles/realsense2-framos.dir/src/global_timestamp_reader.cpp.o CMakeFiles/realsense2-framos.dir/src/hw-monitor.cpp.o CMakeFiles/realsense2-framos.dir/src/image.cpp.o CMakeFiles/realsense2-framos.dir/src/image-avx.cpp.o CMakeFiles/realsense2-framos.dir/src/log.cpp.o CMakeFiles/realsense2-framos.dir/src/option.cpp.o CMakeFiles/realsense2-framos.dir/src/rs.cpp.o CMakeFiles/realsense2-framos.dir/src/sensor.cpp.o CMakeFiles/realsense2-framos.dir/src/software-device.cpp.o CMakeFiles/realsense2-framos.dir/src/source.cpp.o CMakeFiles/realsense2-framos.dir/src/stream.cpp.o CMakeFiles/realsense2-framos.dir/src/sync.cpp.o CMakeFiles/realsense2-framos.dir/src/types.cpp.o CMakeFiles/realsense2-framos.dir/src/verify.c.o CMakeFiles/realsense2-framos.dir/src/frame-validator.cpp.o CMakeFiles/realsense2-framos.dir/third-party/sqlite/sqlite3.c.o CMakeFiles/realsense2-framos.dir/third-party/easyloggingpp/src/easylogging++.cc.o CMakeFiles/realsense2-framos.dir/usr/include/framos/camerasuite/smcs_cpp/CameraSDK.cpp.o -Wl,-rpath,/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: third-party/realsense-file/librealsense-file.a /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so third-party/libtm/libtm/src/libtm.a -lusb-1.0 third-party/libtm/fw/libfw.a /usr/bin/cmake -E cmake_symlink_library librealsense2-framos.so.2.29.8 librealsense2-framos.so.2.29 librealsense2-framos.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 45%] Built target realsense2-framos make -f third-party/glfw/src/CMakeFiles/glfw.dir/build.make third-party/glfw/src/CMakeFiles/glfw.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src/CMakeFiles/glfw.dir/DependInfo.cmake --color= Scanning dependencies of target glfw make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/glfw/src/CMakeFiles/glfw.dir/build.make third-party/glfw/src/CMakeFiles/glfw.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 45%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/context.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -Wdeclaration-after-statement -o CMakeFiles/glfw.dir/context.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/context.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/context.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 46%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/init.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -Wdeclaration-after-statement -o CMakeFiles/glfw.dir/init.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/init.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/init.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/init.c:28:0: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/init.c: In function ‘glfwSetErrorCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/init.c:311:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(_glfwErrorCallback, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/init.c:311:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(_glfwErrorCallback, cbfun); ^~~~~~~~~~~~~~~~~~~ [ 46%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/input.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -Wdeclaration-after-statement -o CMakeFiles/glfw.dir/input.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:28:0: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetKeyCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:797:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.key, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:797:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.key, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetCharCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:807:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.character, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:807:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.character, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetCharModsCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:817:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.charmods, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:817:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.charmods, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetMouseButtonCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:828:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.mouseButton, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:828:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.mouseButton, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetCursorPosCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:839:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.cursorPos, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:839:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.cursorPos, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetCursorEnterCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:850:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.cursorEnter, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:850:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.cursorEnter, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetScrollCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:861:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.scroll, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:861:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.scroll, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetDropCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:871:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.drop, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:871:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.drop, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c: In function ‘glfwSetJoystickCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:1073:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(_glfw.callbacks.joystick, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/input.c:1073:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(_glfw.callbacks.joystick, cbfun); ^~~~~~~~~~~~~~~~~~~ [ 46%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/monitor.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -Wdeclaration-after-statement -o CMakeFiles/glfw.dir/monitor.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/monitor.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/monitor.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/monitor.c:28:0: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/monitor.c: In function ‘glfwSetMonitorCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/monitor.c:396:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(_glfw.callbacks.monitor, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/monitor.c:396:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(_glfw.callbacks.monitor, cbfun); ^~~~~~~~~~~~~~~~~~~ [ 47%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/vulkan.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -Wdeclaration-after-statement -o CMakeFiles/glfw.dir/vulkan.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/vulkan.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/vulkan.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/vulkan.c: In function ‘_glfwInitVulkan’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/vulkan.c:69:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.vk.GetInstanceProcAddr = (PFN_vkGetInstanceProcAddr) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/vulkan.c: In function ‘glfwGetInstanceProcAddress’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/vulkan.c:263:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] proc = (GLFWvkproc) _glfw_dlsym(_glfw.vk.handle, procname); ^ [ 47%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/window.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -Wdeclaration-after-statement -o CMakeFiles/glfw.dir/window.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:29: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:29:0: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowPosCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:980:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.pos, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:980:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.pos, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowSizeCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:991:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.size, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:991:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.size, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowCloseCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1002:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.close, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1002:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.close, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowRefreshCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1013:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.refresh, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1013:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.refresh, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowFocusCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1024:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.focus, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1024:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.focus, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowIconifyCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1035:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.iconify, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1035:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.iconify, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowMaximizeCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1046:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.maximize, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1046:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.maximize, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetFramebufferSizeCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1057:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.fbsize, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1057:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.fbsize, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c: In function ‘glfwSetWindowContentScaleCallback’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:221:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] t = x; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1068:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.scale, cbfun); ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:223:11: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] y = t; \ ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/window.c:1068:5: note: in expansion of macro ‘_GLFW_SWAP_POINTERS’ _GLFW_SWAP_POINTERS(window->callbacks.scale, cbfun); ^~~~~~~~~~~~~~~~~~~ [ 47%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/x11_init.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/x11_init.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c: In function ‘initExtensions’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:467:44: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.vidmode.QueryExtension = (PFN_XF86VidModeQueryExtension) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:469:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.vidmode.GetGammaRamp = (PFN_XF86VidModeGetGammaRamp) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:471:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.vidmode.SetGammaRamp = (PFN_XF86VidModeSetGammaRamp) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:473:46: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.vidmode.GetGammaRampSize = (PFN_XF86VidModeGetGammaRampSize) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:489:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xi.QueryVersion = (PFN_XIQueryVersion) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:491:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xi.SelectEvents = (PFN_XISelectEvents) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:519:38: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.AllocGamma = (PFN_XRRAllocGamma) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:521:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.FreeGamma = (PFN_XRRFreeGamma) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:523:40: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.FreeCrtcInfo = (PFN_XRRFreeCrtcInfo) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:525:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.FreeGamma = (PFN_XRRFreeGamma) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:527:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.FreeOutputInfo = (PFN_XRRFreeOutputInfo) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:529:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.FreeScreenResources = (PFN_XRRFreeScreenResources) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:531:40: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.GetCrtcGamma = (PFN_XRRGetCrtcGamma) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:533:44: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.GetCrtcGammaSize = (PFN_XRRGetCrtcGammaSize) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:535:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.GetCrtcInfo = (PFN_XRRGetCrtcInfo) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:537:41: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.GetOutputInfo = (PFN_XRRGetOutputInfo) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:539:44: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.GetOutputPrimary = (PFN_XRRGetOutputPrimary) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:541:53: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.GetScreenResourcesCurrent = (PFN_XRRGetScreenResourcesCurrent) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:543:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.QueryExtension = (PFN_XRRQueryExtension) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:545:40: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.QueryVersion = (PFN_XRRQueryVersion) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:547:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.SelectInput = (PFN_XRRSelectInput) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:549:41: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.SetCrtcConfig = (PFN_XRRSetCrtcConfig) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:551:40: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.SetCrtcGamma = (PFN_XRRSetCrtcGamma) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:553:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.randr.UpdateConfiguration = (PFN_XRRUpdateConfiguration) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:611:41: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xcursor.ImageCreate = (PFN_XcursorImageCreate) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:613:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xcursor.ImageDestroy = (PFN_XcursorImageDestroy) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:615:45: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xcursor.ImageLoadCursor = (PFN_XcursorImageLoadCursor) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:626:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xinerama.IsActive = (PFN_XineramaIsActive) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:628:45: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xinerama.QueryExtension = (PFN_XineramaQueryExtension) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:630:43: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xinerama.QueryScreens = (PFN_XineramaQueryScreens) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:670:45: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.x11xcb.GetXCBConnection = (PFN_XGetXCBConnection) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:681:44: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xrender.QueryExtension = (PFN_XRenderQueryExtension) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:683:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xrender.QueryVersion = (PFN_XRenderQueryVersion) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_init.c:685:46: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.x11.xrender.FindVisualFormat = (PFN_XRenderFindVisualFormat) ^ [ 48%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/x11_monitor.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/x11_monitor.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_monitor.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_monitor.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 48%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/x11_window.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/x11_window.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_window.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_window.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 48%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/xkb_unicode.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/xkb_unicode.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/xkb_unicode.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/xkb_unicode.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 49%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/posix_time.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/posix_time.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/posix_time.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/posix_time.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 49%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/posix_thread.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/posix_thread.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/posix_thread.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/posix_thread.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 49%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/glx_context.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/glx_context.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:187:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:28: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c: In function ‘getProcAddressGLX’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/x11_platform.h:166:35: warning: ISO C forbids return between function pointer and ‘void *’ [-Wpedantic] #define _glfw_dlsym(handle, name) dlsym(handle, name) ^~~~~~~~~~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:226:16: note: in expansion of macro ‘_glfw_dlsym’ return _glfw_dlsym(_glfw.glx.handle, procname); ^~~~~~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c: In function ‘_glfwInitGLX’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:285:28: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.GetFBConfigs = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:287:33: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.GetFBConfigAttrib = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:289:31: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.GetClientString = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:291:30: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.QueryExtension = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:293:28: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.QueryVersion = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:295:30: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.DestroyContext = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:297:27: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.MakeCurrent = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:299:27: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.SwapBuffers = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:301:37: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.QueryExtensionsString = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:303:32: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.CreateNewContext = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:305:28: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.CreateWindow = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:307:29: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.DestroyWindow = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:309:30: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.GetProcAddress = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:311:33: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.GetProcAddressARB = ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/glx_context.c:313:37: warning: ISO C forbids assignment between function pointer and ‘void *’ [-Wpedantic] _glfw.glx.GetVisualFromFBConfig = ^ [ 50%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/egl_context.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/egl_context.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c: In function ‘getProcAddressEGL’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:256:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] GLFWglproc proc = (GLFWglproc) _glfw_dlsym(window->context.egl.client, ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c: In function ‘_glfwInitEGL’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:338:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.GetConfigAttrib = (PFN_eglGetConfigAttrib) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:340:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.GetConfigs = (PFN_eglGetConfigs) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:342:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.GetDisplay = (PFN_eglGetDisplay) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:344:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.GetError = (PFN_eglGetError) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:346:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.Initialize = (PFN_eglInitialize) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:348:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.Terminate = (PFN_eglTerminate) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:350:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.BindAPI = (PFN_eglBindAPI) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:352:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.CreateContext = (PFN_eglCreateContext) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:354:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.DestroySurface = (PFN_eglDestroySurface) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:356:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.DestroyContext = (PFN_eglDestroyContext) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:358:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.CreateWindowSurface = (PFN_eglCreateWindowSurface) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:360:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.MakeCurrent = (PFN_eglMakeCurrent) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:362:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.SwapBuffers = (PFN_eglSwapBuffers) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:364:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.SwapInterval = (PFN_eglSwapInterval) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:366:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.QueryString = (PFN_eglQueryString) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/egl_context.c:368:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.egl.GetProcAddress = (PFN_eglGetProcAddress) ^ [ 50%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/osmesa_context.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/osmesa_context.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdlib.h:25, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c: In function ‘_glfwInitOSMesa’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:148:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.osmesa.CreateContextExt = (PFN_OSMesaCreateContextExt) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:150:41: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.osmesa.CreateContextAttribs = (PFN_OSMesaCreateContextAttribs) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:152:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.osmesa.DestroyContext = (PFN_OSMesaDestroyContext) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:154:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.osmesa.MakeCurrent = (PFN_OSMesaMakeCurrent) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:156:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.osmesa.GetColorBuffer = (PFN_OSMesaGetColorBuffer) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:158:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.osmesa.GetDepthBuffer = (PFN_OSMesaGetDepthBuffer) ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/osmesa_context.c:160:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] _glfw.osmesa.GetProcAddress = (PFN_OSMesaGetProcAddress) ^ [ 50%] Building C object third-party/glfw/src/CMakeFiles/glfw.dir/linux_joystick.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -D_GLFW_USE_CONFIG_H -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -Wall -o CMakeFiles/glfw.dir/linux_joystick.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/linux_joystick.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/../include/GLFW/glfw3.h:134, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/internal.h:49, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src/linux_joystick.c:28: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 51%] Linking C static library libglfw3.a cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && /usr/bin/cmake -P CMakeFiles/glfw.dir/cmake_clean_target.cmake cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src && /usr/bin/cmake -E cmake_link_script CMakeFiles/glfw.dir/link.txt --verbose=1 ccache /usr/bin/ar qc libglfw3.a CMakeFiles/glfw.dir/context.c.o CMakeFiles/glfw.dir/init.c.o CMakeFiles/glfw.dir/input.c.o CMakeFiles/glfw.dir/monitor.c.o CMakeFiles/glfw.dir/vulkan.c.o CMakeFiles/glfw.dir/window.c.o CMakeFiles/glfw.dir/x11_init.c.o CMakeFiles/glfw.dir/x11_monitor.c.o CMakeFiles/glfw.dir/x11_window.c.o CMakeFiles/glfw.dir/xkb_unicode.c.o CMakeFiles/glfw.dir/posix_time.c.o CMakeFiles/glfw.dir/posix_thread.c.o CMakeFiles/glfw.dir/glx_context.c.o CMakeFiles/glfw.dir/egl_context.c.o CMakeFiles/glfw.dir/osmesa_context.c.o CMakeFiles/glfw.dir/linux_joystick.c.o ccache /usr/bin/ranlib libglfw3.a make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 51%] Built target glfw make -f src/gl/CMakeFiles/realsense2-framos-gl.dir/build.make src/gl/CMakeFiles/realsense2-framos-gl.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl/CMakeFiles/realsense2-framos-gl.dir/DependInfo.cmake --color= Scanning dependencies of target realsense2-framos-gl make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f src/gl/CMakeFiles/realsense2-framos-gl.dir/build.make src/gl/CMakeFiles/realsense2-framos-gl.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 52%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/synthetic-stream-gl.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/synthetic-stream-gl.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/synthetic-stream-gl.cpp [ 52%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/yuy2rgb-gl.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/yuy2rgb-gl.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/yuy2rgb-gl.cpp In file included from /usr/include/c++/7/backward/strstream:50:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/yuy2rgb-gl.cpp:19: /usr/include/c++/7/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp] #warning \ ^~~~~~~ [ 52%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/pointcloud-gl.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/pointcloud-gl.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/pointcloud-gl.cpp [ 53%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/rs-gl.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/rs-gl.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/rs-gl.cpp [ 53%] Building C object src/gl/CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/glad/glad.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -o CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/glad/glad.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:26: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:864:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:865:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:866:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glHint = (PFNGLHINTPROC)load("glHint"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:867:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:868:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:869:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:870:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:871:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:872:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:873:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:874:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:875:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:876:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:877:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:878:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClear = (PFNGLCLEARPROC)load("glClear"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:879:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:880:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:881:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:882:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:883:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:884:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:885:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:886:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:887:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:888:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:889:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:890:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:891:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:892:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:893:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:894:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:895:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:896:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:897:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:898:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:899:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:900:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:901:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:902:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:903:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:904:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:905:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:906:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:907:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:908:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:909:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:910:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:911:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:912:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNewList = (PFNGLNEWLISTPROC)load("glNewList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:913:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndList = (PFNGLENDLISTPROC)load("glEndList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:914:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallList = (PFNGLCALLLISTPROC)load("glCallList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:915:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallLists = (PFNGLCALLLISTSPROC)load("glCallLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:916:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteLists = (PFNGLDELETELISTSPROC)load("glDeleteLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:917:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenLists = (PFNGLGENLISTSPROC)load("glGenLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:918:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glListBase = (PFNGLLISTBASEPROC)load("glListBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:919:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBegin = (PFNGLBEGINPROC)load("glBegin"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:920:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBitmap = (PFNGLBITMAPPROC)load("glBitmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:921:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3b = (PFNGLCOLOR3BPROC)load("glColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:922:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3bv = (PFNGLCOLOR3BVPROC)load("glColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:923:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3d = (PFNGLCOLOR3DPROC)load("glColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:924:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3dv = (PFNGLCOLOR3DVPROC)load("glColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:925:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3f = (PFNGLCOLOR3FPROC)load("glColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:926:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3fv = (PFNGLCOLOR3FVPROC)load("glColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:927:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3i = (PFNGLCOLOR3IPROC)load("glColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:928:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3iv = (PFNGLCOLOR3IVPROC)load("glColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:929:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3s = (PFNGLCOLOR3SPROC)load("glColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:930:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3sv = (PFNGLCOLOR3SVPROC)load("glColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:931:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ub = (PFNGLCOLOR3UBPROC)load("glColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:932:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ubv = (PFNGLCOLOR3UBVPROC)load("glColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:933:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ui = (PFNGLCOLOR3UIPROC)load("glColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:934:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3uiv = (PFNGLCOLOR3UIVPROC)load("glColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:935:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3us = (PFNGLCOLOR3USPROC)load("glColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:936:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3usv = (PFNGLCOLOR3USVPROC)load("glColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:937:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4b = (PFNGLCOLOR4BPROC)load("glColor4b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:938:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4bv = (PFNGLCOLOR4BVPROC)load("glColor4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:939:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4d = (PFNGLCOLOR4DPROC)load("glColor4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:940:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4dv = (PFNGLCOLOR4DVPROC)load("glColor4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:941:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4f = (PFNGLCOLOR4FPROC)load("glColor4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:942:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4fv = (PFNGLCOLOR4FVPROC)load("glColor4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:943:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4i = (PFNGLCOLOR4IPROC)load("glColor4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:944:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4iv = (PFNGLCOLOR4IVPROC)load("glColor4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:945:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4s = (PFNGLCOLOR4SPROC)load("glColor4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:946:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4sv = (PFNGLCOLOR4SVPROC)load("glColor4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:947:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ub = (PFNGLCOLOR4UBPROC)load("glColor4ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:948:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ubv = (PFNGLCOLOR4UBVPROC)load("glColor4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:949:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ui = (PFNGLCOLOR4UIPROC)load("glColor4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:950:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4uiv = (PFNGLCOLOR4UIVPROC)load("glColor4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:951:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4us = (PFNGLCOLOR4USPROC)load("glColor4us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:952:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4usv = (PFNGLCOLOR4USVPROC)load("glColor4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:953:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlag = (PFNGLEDGEFLAGPROC)load("glEdgeFlag"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:954:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagv = (PFNGLEDGEFLAGVPROC)load("glEdgeFlagv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:955:15: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnd = (PFNGLENDPROC)load("glEnd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:956:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexd = (PFNGLINDEXDPROC)load("glIndexd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:957:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexdv = (PFNGLINDEXDVPROC)load("glIndexdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:958:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexf = (PFNGLINDEXFPROC)load("glIndexf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:959:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexfv = (PFNGLINDEXFVPROC)load("glIndexfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:960:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexi = (PFNGLINDEXIPROC)load("glIndexi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:961:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexiv = (PFNGLINDEXIVPROC)load("glIndexiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:962:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexs = (PFNGLINDEXSPROC)load("glIndexs"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:963:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexsv = (PFNGLINDEXSVPROC)load("glIndexsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:964:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3b = (PFNGLNORMAL3BPROC)load("glNormal3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:965:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3bv = (PFNGLNORMAL3BVPROC)load("glNormal3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:966:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3d = (PFNGLNORMAL3DPROC)load("glNormal3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:967:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3dv = (PFNGLNORMAL3DVPROC)load("glNormal3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:968:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3f = (PFNGLNORMAL3FPROC)load("glNormal3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:969:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3fv = (PFNGLNORMAL3FVPROC)load("glNormal3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:970:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3i = (PFNGLNORMAL3IPROC)load("glNormal3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:971:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3iv = (PFNGLNORMAL3IVPROC)load("glNormal3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:972:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3s = (PFNGLNORMAL3SPROC)load("glNormal3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:973:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3sv = (PFNGLNORMAL3SVPROC)load("glNormal3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:974:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2d = (PFNGLRASTERPOS2DPROC)load("glRasterPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:975:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2dv = (PFNGLRASTERPOS2DVPROC)load("glRasterPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:976:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2f = (PFNGLRASTERPOS2FPROC)load("glRasterPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:977:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2fv = (PFNGLRASTERPOS2FVPROC)load("glRasterPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:978:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2i = (PFNGLRASTERPOS2IPROC)load("glRasterPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:979:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2iv = (PFNGLRASTERPOS2IVPROC)load("glRasterPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:980:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2s = (PFNGLRASTERPOS2SPROC)load("glRasterPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:981:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2sv = (PFNGLRASTERPOS2SVPROC)load("glRasterPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:982:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3d = (PFNGLRASTERPOS3DPROC)load("glRasterPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:983:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3dv = (PFNGLRASTERPOS3DVPROC)load("glRasterPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:984:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3f = (PFNGLRASTERPOS3FPROC)load("glRasterPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:985:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3fv = (PFNGLRASTERPOS3FVPROC)load("glRasterPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:986:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3i = (PFNGLRASTERPOS3IPROC)load("glRasterPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:987:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3iv = (PFNGLRASTERPOS3IVPROC)load("glRasterPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:988:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3s = (PFNGLRASTERPOS3SPROC)load("glRasterPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:989:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3sv = (PFNGLRASTERPOS3SVPROC)load("glRasterPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:990:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4d = (PFNGLRASTERPOS4DPROC)load("glRasterPos4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:991:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4dv = (PFNGLRASTERPOS4DVPROC)load("glRasterPos4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:992:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4f = (PFNGLRASTERPOS4FPROC)load("glRasterPos4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:993:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4fv = (PFNGLRASTERPOS4FVPROC)load("glRasterPos4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:994:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4i = (PFNGLRASTERPOS4IPROC)load("glRasterPos4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:995:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4iv = (PFNGLRASTERPOS4IVPROC)load("glRasterPos4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:996:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4s = (PFNGLRASTERPOS4SPROC)load("glRasterPos4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:997:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4sv = (PFNGLRASTERPOS4SVPROC)load("glRasterPos4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:998:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectd = (PFNGLRECTDPROC)load("glRectd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:999:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectdv = (PFNGLRECTDVPROC)load("glRectdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1000:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectf = (PFNGLRECTFPROC)load("glRectf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1001:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectfv = (PFNGLRECTFVPROC)load("glRectfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1002:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRecti = (PFNGLRECTIPROC)load("glRecti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1003:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectiv = (PFNGLRECTIVPROC)load("glRectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1004:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRects = (PFNGLRECTSPROC)load("glRects"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1005:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectsv = (PFNGLRECTSVPROC)load("glRectsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1006:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1d = (PFNGLTEXCOORD1DPROC)load("glTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1007:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1dv = (PFNGLTEXCOORD1DVPROC)load("glTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1008:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1f = (PFNGLTEXCOORD1FPROC)load("glTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1009:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1fv = (PFNGLTEXCOORD1FVPROC)load("glTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1010:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1i = (PFNGLTEXCOORD1IPROC)load("glTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1011:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1iv = (PFNGLTEXCOORD1IVPROC)load("glTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1012:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1s = (PFNGLTEXCOORD1SPROC)load("glTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1013:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1sv = (PFNGLTEXCOORD1SVPROC)load("glTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1014:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2d = (PFNGLTEXCOORD2DPROC)load("glTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1015:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2dv = (PFNGLTEXCOORD2DVPROC)load("glTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1016:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2f = (PFNGLTEXCOORD2FPROC)load("glTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1017:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2fv = (PFNGLTEXCOORD2FVPROC)load("glTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1018:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2i = (PFNGLTEXCOORD2IPROC)load("glTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1019:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2iv = (PFNGLTEXCOORD2IVPROC)load("glTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1020:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2s = (PFNGLTEXCOORD2SPROC)load("glTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1021:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2sv = (PFNGLTEXCOORD2SVPROC)load("glTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1022:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3d = (PFNGLTEXCOORD3DPROC)load("glTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1023:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3dv = (PFNGLTEXCOORD3DVPROC)load("glTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1024:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3f = (PFNGLTEXCOORD3FPROC)load("glTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1025:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3fv = (PFNGLTEXCOORD3FVPROC)load("glTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1026:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3i = (PFNGLTEXCOORD3IPROC)load("glTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1027:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3iv = (PFNGLTEXCOORD3IVPROC)load("glTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1028:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3s = (PFNGLTEXCOORD3SPROC)load("glTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1029:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3sv = (PFNGLTEXCOORD3SVPROC)load("glTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1030:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4d = (PFNGLTEXCOORD4DPROC)load("glTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1031:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4dv = (PFNGLTEXCOORD4DVPROC)load("glTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1032:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4f = (PFNGLTEXCOORD4FPROC)load("glTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1033:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4fv = (PFNGLTEXCOORD4FVPROC)load("glTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1034:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4i = (PFNGLTEXCOORD4IPROC)load("glTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1035:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4iv = (PFNGLTEXCOORD4IVPROC)load("glTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1036:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4s = (PFNGLTEXCOORD4SPROC)load("glTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1037:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4sv = (PFNGLTEXCOORD4SVPROC)load("glTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1038:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2d = (PFNGLVERTEX2DPROC)load("glVertex2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1039:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2dv = (PFNGLVERTEX2DVPROC)load("glVertex2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1040:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2f = (PFNGLVERTEX2FPROC)load("glVertex2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1041:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2fv = (PFNGLVERTEX2FVPROC)load("glVertex2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1042:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2i = (PFNGLVERTEX2IPROC)load("glVertex2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1043:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2iv = (PFNGLVERTEX2IVPROC)load("glVertex2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1044:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2s = (PFNGLVERTEX2SPROC)load("glVertex2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1045:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2sv = (PFNGLVERTEX2SVPROC)load("glVertex2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1046:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3d = (PFNGLVERTEX3DPROC)load("glVertex3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1047:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3dv = (PFNGLVERTEX3DVPROC)load("glVertex3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1048:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3f = (PFNGLVERTEX3FPROC)load("glVertex3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1049:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3fv = (PFNGLVERTEX3FVPROC)load("glVertex3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1050:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3i = (PFNGLVERTEX3IPROC)load("glVertex3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1051:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3iv = (PFNGLVERTEX3IVPROC)load("glVertex3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1052:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3s = (PFNGLVERTEX3SPROC)load("glVertex3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1053:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3sv = (PFNGLVERTEX3SVPROC)load("glVertex3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1054:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4d = (PFNGLVERTEX4DPROC)load("glVertex4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1055:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4dv = (PFNGLVERTEX4DVPROC)load("glVertex4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1056:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4f = (PFNGLVERTEX4FPROC)load("glVertex4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1057:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4fv = (PFNGLVERTEX4FVPROC)load("glVertex4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1058:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4i = (PFNGLVERTEX4IPROC)load("glVertex4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1059:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4iv = (PFNGLVERTEX4IVPROC)load("glVertex4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1060:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4s = (PFNGLVERTEX4SPROC)load("glVertex4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1061:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4sv = (PFNGLVERTEX4SVPROC)load("glVertex4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1062:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClipPlane = (PFNGLCLIPPLANEPROC)load("glClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1063:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaterial = (PFNGLCOLORMATERIALPROC)load("glColorMaterial"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1064:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogf = (PFNGLFOGFPROC)load("glFogf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1065:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogfv = (PFNGLFOGFVPROC)load("glFogfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1066:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogi = (PFNGLFOGIPROC)load("glFogi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1067:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogiv = (PFNGLFOGIVPROC)load("glFogiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1068:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightf = (PFNGLLIGHTFPROC)load("glLightf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1069:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightfv = (PFNGLLIGHTFVPROC)load("glLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1070:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLighti = (PFNGLLIGHTIPROC)load("glLighti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1071:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightiv = (PFNGLLIGHTIVPROC)load("glLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1072:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelf = (PFNGLLIGHTMODELFPROC)load("glLightModelf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1073:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelfv = (PFNGLLIGHTMODELFVPROC)load("glLightModelfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1074:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeli = (PFNGLLIGHTMODELIPROC)load("glLightModeli"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1075:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeliv = (PFNGLLIGHTMODELIVPROC)load("glLightModeliv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1076:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineStipple = (PFNGLLINESTIPPLEPROC)load("glLineStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1077:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialf = (PFNGLMATERIALFPROC)load("glMaterialf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1078:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialfv = (PFNGLMATERIALFVPROC)load("glMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1079:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMateriali = (PFNGLMATERIALIPROC)load("glMateriali"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1080:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialiv = (PFNGLMATERIALIVPROC)load("glMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1081:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonStipple = (PFNGLPOLYGONSTIPPLEPROC)load("glPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1082:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShadeModel = (PFNGLSHADEMODELPROC)load("glShadeModel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1083:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvf = (PFNGLTEXENVFPROC)load("glTexEnvf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1084:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvfv = (PFNGLTEXENVFVPROC)load("glTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1085:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvi = (PFNGLTEXENVIPROC)load("glTexEnvi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1086:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnviv = (PFNGLTEXENVIVPROC)load("glTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1087:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGend = (PFNGLTEXGENDPROC)load("glTexGend"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1088:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGendv = (PFNGLTEXGENDVPROC)load("glTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1089:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenf = (PFNGLTEXGENFPROC)load("glTexGenf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1090:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenfv = (PFNGLTEXGENFVPROC)load("glTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1091:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeni = (PFNGLTEXGENIPROC)load("glTexGeni"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1092:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeniv = (PFNGLTEXGENIVPROC)load("glTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1093:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFeedbackBuffer = (PFNGLFEEDBACKBUFFERPROC)load("glFeedbackBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1094:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSelectBuffer = (PFNGLSELECTBUFFERPROC)load("glSelectBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1095:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderMode = (PFNGLRENDERMODEPROC)load("glRenderMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1096:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInitNames = (PFNGLINITNAMESPROC)load("glInitNames"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1097:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadName = (PFNGLLOADNAMEPROC)load("glLoadName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1098:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPassThrough = (PFNGLPASSTHROUGHPROC)load("glPassThrough"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1099:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopName = (PFNGLPOPNAMEPROC)load("glPopName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1100:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushName = (PFNGLPUSHNAMEPROC)load("glPushName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1101:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearAccum = (PFNGLCLEARACCUMPROC)load("glClearAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1102:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearIndex = (PFNGLCLEARINDEXPROC)load("glClearIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1103:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexMask = (PFNGLINDEXMASKPROC)load("glIndexMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1104:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAccum = (PFNGLACCUMPROC)load("glAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1105:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopAttrib = (PFNGLPOPATTRIBPROC)load("glPopAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1106:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushAttrib = (PFNGLPUSHATTRIBPROC)load("glPushAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1107:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1d = (PFNGLMAP1DPROC)load("glMap1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1108:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1f = (PFNGLMAP1FPROC)load("glMap1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1109:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2d = (PFNGLMAP2DPROC)load("glMap2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1110:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2f = (PFNGLMAP2FPROC)load("glMap2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1111:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1d = (PFNGLMAPGRID1DPROC)load("glMapGrid1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1112:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1f = (PFNGLMAPGRID1FPROC)load("glMapGrid1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1113:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2d = (PFNGLMAPGRID2DPROC)load("glMapGrid2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1114:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2f = (PFNGLMAPGRID2FPROC)load("glMapGrid2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1115:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1d = (PFNGLEVALCOORD1DPROC)load("glEvalCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1116:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1dv = (PFNGLEVALCOORD1DVPROC)load("glEvalCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1117:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1f = (PFNGLEVALCOORD1FPROC)load("glEvalCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1118:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1fv = (PFNGLEVALCOORD1FVPROC)load("glEvalCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1119:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2d = (PFNGLEVALCOORD2DPROC)load("glEvalCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1120:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2dv = (PFNGLEVALCOORD2DVPROC)load("glEvalCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1121:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2f = (PFNGLEVALCOORD2FPROC)load("glEvalCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1122:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2fv = (PFNGLEVALCOORD2FVPROC)load("glEvalCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1123:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh1 = (PFNGLEVALMESH1PROC)load("glEvalMesh1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1124:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint1 = (PFNGLEVALPOINT1PROC)load("glEvalPoint1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1125:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh2 = (PFNGLEVALMESH2PROC)load("glEvalMesh2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1126:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint2 = (PFNGLEVALPOINT2PROC)load("glEvalPoint2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1127:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAlphaFunc = (PFNGLALPHAFUNCPROC)load("glAlphaFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1128:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelZoom = (PFNGLPIXELZOOMPROC)load("glPixelZoom"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1129:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferf = (PFNGLPIXELTRANSFERFPROC)load("glPixelTransferf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1130:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferi = (PFNGLPIXELTRANSFERIPROC)load("glPixelTransferi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1131:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapfv = (PFNGLPIXELMAPFVPROC)load("glPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1132:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapuiv = (PFNGLPIXELMAPUIVPROC)load("glPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1133:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapusv = (PFNGLPIXELMAPUSVPROC)load("glPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1134:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyPixels = (PFNGLCOPYPIXELSPROC)load("glCopyPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1135:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawPixels = (PFNGLDRAWPIXELSPROC)load("glDrawPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1136:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetClipPlane = (PFNGLGETCLIPPLANEPROC)load("glGetClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1137:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightfv = (PFNGLGETLIGHTFVPROC)load("glGetLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1138:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightiv = (PFNGLGETLIGHTIVPROC)load("glGetLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1139:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapdv = (PFNGLGETMAPDVPROC)load("glGetMapdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1140:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapfv = (PFNGLGETMAPFVPROC)load("glGetMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1141:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapiv = (PFNGLGETMAPIVPROC)load("glGetMapiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1142:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialfv = (PFNGLGETMATERIALFVPROC)load("glGetMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1143:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialiv = (PFNGLGETMATERIALIVPROC)load("glGetMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1144:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapfv = (PFNGLGETPIXELMAPFVPROC)load("glGetPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1145:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapuiv = (PFNGLGETPIXELMAPUIVPROC)load("glGetPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1146:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapusv = (PFNGLGETPIXELMAPUSVPROC)load("glGetPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1147:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPolygonStipple = (PFNGLGETPOLYGONSTIPPLEPROC)load("glGetPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1148:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnvfv = (PFNGLGETTEXENVFVPROC)load("glGetTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1149:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnviv = (PFNGLGETTEXENVIVPROC)load("glGetTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1150:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGendv = (PFNGLGETTEXGENDVPROC)load("glGetTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1151:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGenfv = (PFNGLGETTEXGENFVPROC)load("glGetTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1152:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGeniv = (PFNGLGETTEXGENIVPROC)load("glGetTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1153:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsList = (PFNGLISLISTPROC)load("glIsList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1154:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrustum = (PFNGLFRUSTUMPROC)load("glFrustum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1155:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadIdentity = (PFNGLLOADIDENTITYPROC)load("glLoadIdentity"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1156:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixf = (PFNGLLOADMATRIXFPROC)load("glLoadMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1157:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixd = (PFNGLLOADMATRIXDPROC)load("glLoadMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1158:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMatrixMode = (PFNGLMATRIXMODEPROC)load("glMatrixMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1159:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixf = (PFNGLMULTMATRIXFPROC)load("glMultMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1160:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixd = (PFNGLMULTMATRIXDPROC)load("glMultMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1161:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glOrtho = (PFNGLORTHOPROC)load("glOrtho"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1162:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopMatrix = (PFNGLPOPMATRIXPROC)load("glPopMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1163:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushMatrix = (PFNGLPUSHMATRIXPROC)load("glPushMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1164:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotated = (PFNGLROTATEDPROC)load("glRotated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1165:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotatef = (PFNGLROTATEFPROC)load("glRotatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1166:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScaled = (PFNGLSCALEDPROC)load("glScaled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1167:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScalef = (PFNGLSCALEFPROC)load("glScalef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1168:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslated = (PFNGLTRANSLATEDPROC)load("glTranslated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1169:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslatef = (PFNGLTRANSLATEFPROC)load("glTranslatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1173:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1174:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1175:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1176:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1177:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1178:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1179:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage1D = (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1180:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1181:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1182:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1183:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1184:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1185:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1186:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1187:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glArrayElement = (PFNGLARRAYELEMENTPROC)load("glArrayElement"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1188:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorPointer = (PFNGLCOLORPOINTERPROC)load("glColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1189:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableClientState = (PFNGLDISABLECLIENTSTATEPROC)load("glDisableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1190:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagPointer = (PFNGLEDGEFLAGPOINTERPROC)load("glEdgeFlagPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1191:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableClientState = (PFNGLENABLECLIENTSTATEPROC)load("glEnableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1192:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexPointer = (PFNGLINDEXPOINTERPROC)load("glIndexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1193:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInterleavedArrays = (PFNGLINTERLEAVEDARRAYSPROC)load("glInterleavedArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1194:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormalPointer = (PFNGLNORMALPOINTERPROC)load("glNormalPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1195:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoordPointer = (PFNGLTEXCOORDPOINTERPROC)load("glTexCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1196:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexPointer = (PFNGLVERTEXPOINTERPROC)load("glVertexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1197:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAreTexturesResident = (PFNGLARETEXTURESRESIDENTPROC)load("glAreTexturesResident"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1198:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrioritizeTextures = (PFNGLPRIORITIZETEXTURESPROC)load("glPrioritizeTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1199:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexub = (PFNGLINDEXUBPROC)load("glIndexub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1200:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexubv = (PFNGLINDEXUBVPROC)load("glIndexubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1201:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopClientAttrib = (PFNGLPOPCLIENTATTRIBPROC)load("glPopClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1202:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushClientAttrib = (PFNGLPUSHCLIENTATTRIBPROC)load("glPushClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1206:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1207:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1208:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1209:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_3’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1213:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1214:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1215:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1216:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1217:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage1D = (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1218:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1219:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1220:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage1D = (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1221:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetCompressedTexImage = (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1222:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientActiveTexture = (PFNGLCLIENTACTIVETEXTUREPROC)load("glClientActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1223:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1d = (PFNGLMULTITEXCOORD1DPROC)load("glMultiTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1224:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1dv = (PFNGLMULTITEXCOORD1DVPROC)load("glMultiTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1225:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1f = (PFNGLMULTITEXCOORD1FPROC)load("glMultiTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1226:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1fv = (PFNGLMULTITEXCOORD1FVPROC)load("glMultiTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1227:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1i = (PFNGLMULTITEXCOORD1IPROC)load("glMultiTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1228:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1iv = (PFNGLMULTITEXCOORD1IVPROC)load("glMultiTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1229:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1s = (PFNGLMULTITEXCOORD1SPROC)load("glMultiTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1230:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1sv = (PFNGLMULTITEXCOORD1SVPROC)load("glMultiTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1231:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2d = (PFNGLMULTITEXCOORD2DPROC)load("glMultiTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1232:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2dv = (PFNGLMULTITEXCOORD2DVPROC)load("glMultiTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1233:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2f = (PFNGLMULTITEXCOORD2FPROC)load("glMultiTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1234:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2fv = (PFNGLMULTITEXCOORD2FVPROC)load("glMultiTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1235:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2i = (PFNGLMULTITEXCOORD2IPROC)load("glMultiTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1236:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2iv = (PFNGLMULTITEXCOORD2IVPROC)load("glMultiTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1237:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2s = (PFNGLMULTITEXCOORD2SPROC)load("glMultiTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1238:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2sv = (PFNGLMULTITEXCOORD2SVPROC)load("glMultiTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1239:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3d = (PFNGLMULTITEXCOORD3DPROC)load("glMultiTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1240:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3dv = (PFNGLMULTITEXCOORD3DVPROC)load("glMultiTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1241:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3f = (PFNGLMULTITEXCOORD3FPROC)load("glMultiTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1242:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3fv = (PFNGLMULTITEXCOORD3FVPROC)load("glMultiTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1243:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3i = (PFNGLMULTITEXCOORD3IPROC)load("glMultiTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1244:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3iv = (PFNGLMULTITEXCOORD3IVPROC)load("glMultiTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1245:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3s = (PFNGLMULTITEXCOORD3SPROC)load("glMultiTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1246:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3sv = (PFNGLMULTITEXCOORD3SVPROC)load("glMultiTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1247:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4d = (PFNGLMULTITEXCOORD4DPROC)load("glMultiTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1248:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4dv = (PFNGLMULTITEXCOORD4DVPROC)load("glMultiTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1249:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4f = (PFNGLMULTITEXCOORD4FPROC)load("glMultiTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1250:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4fv = (PFNGLMULTITEXCOORD4FVPROC)load("glMultiTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1251:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4i = (PFNGLMULTITEXCOORD4IPROC)load("glMultiTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1252:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4iv = (PFNGLMULTITEXCOORD4IVPROC)load("glMultiTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1253:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4s = (PFNGLMULTITEXCOORD4SPROC)load("glMultiTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1254:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4sv = (PFNGLMULTITEXCOORD4SVPROC)load("glMultiTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1255:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixf = (PFNGLLOADTRANSPOSEMATRIXFPROC)load("glLoadTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1256:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixd = (PFNGLLOADTRANSPOSEMATRIXDPROC)load("glLoadTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1257:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixf = (PFNGLMULTTRANSPOSEMATRIXFPROC)load("glMultTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1258:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixd = (PFNGLMULTTRANSPOSEMATRIXDPROC)load("glMultTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_4’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1262:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1263:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawArrays = (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1264:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElements = (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1265:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterf = (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1266:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterfv = (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1267:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteri = (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1268:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteriv = (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1269:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordf = (PFNGLFOGCOORDFPROC)load("glFogCoordf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1270:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordfv = (PFNGLFOGCOORDFVPROC)load("glFogCoordfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1271:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordd = (PFNGLFOGCOORDDPROC)load("glFogCoordd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1272:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoorddv = (PFNGLFOGCOORDDVPROC)load("glFogCoorddv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1273:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordPointer = (PFNGLFOGCOORDPOINTERPROC)load("glFogCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1274:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3b = (PFNGLSECONDARYCOLOR3BPROC)load("glSecondaryColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1275:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3bv = (PFNGLSECONDARYCOLOR3BVPROC)load("glSecondaryColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1276:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3d = (PFNGLSECONDARYCOLOR3DPROC)load("glSecondaryColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1277:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3dv = (PFNGLSECONDARYCOLOR3DVPROC)load("glSecondaryColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1278:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3f = (PFNGLSECONDARYCOLOR3FPROC)load("glSecondaryColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1279:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3fv = (PFNGLSECONDARYCOLOR3FVPROC)load("glSecondaryColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1280:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3i = (PFNGLSECONDARYCOLOR3IPROC)load("glSecondaryColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1281:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3iv = (PFNGLSECONDARYCOLOR3IVPROC)load("glSecondaryColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1282:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3s = (PFNGLSECONDARYCOLOR3SPROC)load("glSecondaryColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1283:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3sv = (PFNGLSECONDARYCOLOR3SVPROC)load("glSecondaryColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1284:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ub = (PFNGLSECONDARYCOLOR3UBPROC)load("glSecondaryColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1285:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ubv = (PFNGLSECONDARYCOLOR3UBVPROC)load("glSecondaryColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1286:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ui = (PFNGLSECONDARYCOLOR3UIPROC)load("glSecondaryColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1287:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3uiv = (PFNGLSECONDARYCOLOR3UIVPROC)load("glSecondaryColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1288:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3us = (PFNGLSECONDARYCOLOR3USPROC)load("glSecondaryColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1289:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3usv = (PFNGLSECONDARYCOLOR3USVPROC)load("glSecondaryColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1290:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColorPointer = (PFNGLSECONDARYCOLORPOINTERPROC)load("glSecondaryColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1291:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2d = (PFNGLWINDOWPOS2DPROC)load("glWindowPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1292:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2dv = (PFNGLWINDOWPOS2DVPROC)load("glWindowPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1293:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2f = (PFNGLWINDOWPOS2FPROC)load("glWindowPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1294:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2fv = (PFNGLWINDOWPOS2FVPROC)load("glWindowPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1295:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2i = (PFNGLWINDOWPOS2IPROC)load("glWindowPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1296:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2iv = (PFNGLWINDOWPOS2IVPROC)load("glWindowPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1297:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2s = (PFNGLWINDOWPOS2SPROC)load("glWindowPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1298:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2sv = (PFNGLWINDOWPOS2SVPROC)load("glWindowPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1299:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3d = (PFNGLWINDOWPOS3DPROC)load("glWindowPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1300:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3dv = (PFNGLWINDOWPOS3DVPROC)load("glWindowPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1301:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3f = (PFNGLWINDOWPOS3FPROC)load("glWindowPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1302:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3fv = (PFNGLWINDOWPOS3FVPROC)load("glWindowPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1303:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3i = (PFNGLWINDOWPOS3IPROC)load("glWindowPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1304:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3iv = (PFNGLWINDOWPOS3IVPROC)load("glWindowPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1305:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3s = (PFNGLWINDOWPOS3SPROC)load("glWindowPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1306:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3sv = (PFNGLWINDOWPOS3SVPROC)load("glWindowPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1307:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1308:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_5’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1312:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1313:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1314:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1315:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1316:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1317:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1318:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectiv = (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1319:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1320:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1321:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1322:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1323:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1324:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1325:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1326:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferSubData = (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1327:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1328:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1329:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1330:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1334:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1335:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1336:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1337:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1338:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1339:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1340:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1341:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1342:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1343:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1344:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1345:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1346:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1347:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1348:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1349:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1350:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1351:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1352:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1353:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1354:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1355:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1356:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1357:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1358:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1359:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1360:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1361:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribdv = (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1362:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1363:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1364:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1365:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1366:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1367:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1368:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1369:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1370:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1371:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1372:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1373:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1374:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1375:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1376:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1377:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1378:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1379:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1380:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1381:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1382:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1383:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1384:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1385:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1386:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1387:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1388:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1389:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1390:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1391:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1dv = (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1392:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1393:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1394:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1395:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1sv = (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1396:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1397:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2dv = (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1398:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1399:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1400:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1401:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2sv = (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1402:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1403:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3dv = (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1404:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1405:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1406:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1407:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3sv = (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1408:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nbv = (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1409:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Niv = (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1410:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nsv = (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1411:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nub = (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1412:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nubv = (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1413:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nuiv = (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1414:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nusv = (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1415:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4bv = (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1416:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1417:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4dv = (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1418:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1419:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1420:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4iv = (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1421:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1422:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4sv = (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1423:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4ubv = (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1424:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4uiv = (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1425:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4usv = (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1426:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1430:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1431:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1432:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1433:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1434:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1435:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1439:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1440:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1441:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1442:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1443:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1444:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1445:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1446:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1447:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1448:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1449:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1450:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1451:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1452:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginConditionalRender = (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1453:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndConditionalRender = (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1454:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1455:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1456:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1457:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1i = (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1458:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2i = (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1459:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3i = (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1460:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1461:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1ui = (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1462:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2ui = (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1463:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3ui = (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1464:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1465:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1iv = (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1466:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2iv = (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1467:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3iv = (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1468:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1469:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1uiv = (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1470:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2uiv = (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1471:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3uiv = (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1472:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1473:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4bv = (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1474:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4sv = (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1475:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ubv = (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1476:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4usv = (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1477:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1478:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFragDataLocation = (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1479:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1480:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1481:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1482:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1483:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1484:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1485:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1486:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1487:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1488:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1489:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1490:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1491:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1492:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1493:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1494:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1495:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1496:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1497:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1498:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1499:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1500:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1501:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1502:38: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1503:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1504:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1505:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1506:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1507:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1508:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture1D = (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1509:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1510:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture3D = (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1511:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1512:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1513:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1514:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1515:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1516:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1517:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1518:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1519:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1520:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1521:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1522:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1526:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1527:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1528:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1529:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrimitiveRestartIndex = (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1530:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1531:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1532:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1533:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformName = (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1534:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1535:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1536:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1537:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1538:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1539:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1540:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1544:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1545:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1546:43: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1547:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElementsBaseVertex = (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load("glMultiDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1548:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1549:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1550:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1551:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1552:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1553:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1554:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1555:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1556:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1557:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1558:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1559:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2DMultisample = (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1560:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3DMultisample = (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1561:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1562:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_APPLE_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1566:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArrayAPPLE = (PFNGLBINDVERTEXARRAYAPPLEPROC)load("glBindVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1567:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArraysAPPLE = (PFNGLDELETEVERTEXARRAYSAPPLEPROC)load("glDeleteVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1568:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArraysAPPLE = (PFNGLGENVERTEXARRAYSAPPLEPROC)load("glGenVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1569:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArrayAPPLE = (PFNGLISVERTEXARRAYAPPLEPROC)load("glIsVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_multisample’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1573:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverageARB = (PFNGLSAMPLECOVERAGEARBPROC)load("glSampleCoverageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_robustness’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1577:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetGraphicsResetStatusARB = (PFNGLGETGRAPHICSRESETSTATUSARBPROC)load("glGetGraphicsResetStatusARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1578:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnTexImageARB = (PFNGLGETNTEXIMAGEARBPROC)load("glGetnTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1579:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadnPixelsARB = (PFNGLREADNPIXELSARBPROC)load("glReadnPixelsARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1580:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnCompressedTexImageARB = (PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC)load("glGetnCompressedTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1581:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformfvARB = (PFNGLGETNUNIFORMFVARBPROC)load("glGetnUniformfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1582:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformivARB = (PFNGLGETNUNIFORMIVARBPROC)load("glGetnUniformivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1583:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformuivARB = (PFNGLGETNUNIFORMUIVARBPROC)load("glGetnUniformuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1584:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformdvARB = (PFNGLGETNUNIFORMDVARBPROC)load("glGetnUniformdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1585:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapdvARB = (PFNGLGETNMAPDVARBPROC)load("glGetnMapdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1586:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapfvARB = (PFNGLGETNMAPFVARBPROC)load("glGetnMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1587:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapivARB = (PFNGLGETNMAPIVARBPROC)load("glGetnMapivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1588:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapfvARB = (PFNGLGETNPIXELMAPFVARBPROC)load("glGetnPixelMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1589:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapuivARB = (PFNGLGETNPIXELMAPUIVARBPROC)load("glGetnPixelMapuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1590:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapusvARB = (PFNGLGETNPIXELMAPUSVARBPROC)load("glGetnPixelMapusvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1591:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPolygonStippleARB = (PFNGLGETNPOLYGONSTIPPLEARBPROC)load("glGetnPolygonStippleARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1592:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnColorTableARB = (PFNGLGETNCOLORTABLEARBPROC)load("glGetnColorTableARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1593:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnConvolutionFilterARB = (PFNGLGETNCONVOLUTIONFILTERARBPROC)load("glGetnConvolutionFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1594:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnSeparableFilterARB = (PFNGLGETNSEPARABLEFILTERARBPROC)load("glGetnSeparableFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1595:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnHistogramARB = (PFNGLGETNHISTOGRAMARBPROC)load("glGetnHistogramARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1596:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMinmaxARB = (PFNGLGETNMINMAXARBPROC)load("glGetnMinmaxARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1600:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1601:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1602:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1603:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_KHR_debug’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1607:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControl = (PFNGLDEBUGMESSAGECONTROLPROC)load("glDebugMessageControl"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1608:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsert = (PFNGLDEBUGMESSAGEINSERTPROC)load("glDebugMessageInsert"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1609:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallback = (PFNGLDEBUGMESSAGECALLBACKPROC)load("glDebugMessageCallback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1610:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLog = (PFNGLGETDEBUGMESSAGELOGPROC)load("glGetDebugMessageLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1611:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroup = (PFNGLPUSHDEBUGGROUPPROC)load("glPushDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1612:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroup = (PFNGLPOPDEBUGGROUPPROC)load("glPopDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1613:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabel = (PFNGLOBJECTLABELPROC)load("glObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1614:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabel = (PFNGLGETOBJECTLABELPROC)load("glGetObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1615:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabel = (PFNGLOBJECTPTRLABELPROC)load("glObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1616:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabel = (PFNGLGETOBJECTPTRLABELPROC)load("glGetObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1617:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1618:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControlKHR = (PFNGLDEBUGMESSAGECONTROLKHRPROC)load("glDebugMessageControlKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1619:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsertKHR = (PFNGLDEBUGMESSAGEINSERTKHRPROC)load("glDebugMessageInsertKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1620:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallbackKHR = (PFNGLDEBUGMESSAGECALLBACKKHRPROC)load("glDebugMessageCallbackKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1621:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLogKHR = (PFNGLGETDEBUGMESSAGELOGKHRPROC)load("glGetDebugMessageLogKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1622:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroupKHR = (PFNGLPUSHDEBUGGROUPKHRPROC)load("glPushDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1623:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroupKHR = (PFNGLPOPDEBUGGROUPKHRPROC)load("glPopDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1624:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabelKHR = (PFNGLOBJECTLABELKHRPROC)load("glObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1625:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabelKHR = (PFNGLGETOBJECTLABELKHRPROC)load("glGetObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1626:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabelKHR = (PFNGLOBJECTPTRLABELKHRPROC)load("glObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1627:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabelKHR = (PFNGLGETOBJECTPTRLABELKHRPROC)load("glGetObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1628:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointervKHR = (PFNGLGETPOINTERVKHRPROC)load("glGetPointervKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘gladLoadGLLoader’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1696:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ [ 53%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/__/__/common/opengl3.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/__/__/common/opengl3.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/opengl3.cpp [ 54%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/pc-shader.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/pc-shader.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/pc-shader.cpp [ 54%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/camera-shader.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/camera-shader.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/camera-shader.cpp [ 54%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/upload.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/upload.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/upload.cpp In file included from /usr/include/c++/7/backward/strstream:50:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/upload.cpp:22: /usr/include/c++/7/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp] #warning \ ^~~~~~~ [ 55%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/colorizer-gl.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/colorizer-gl.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/colorizer-gl.cpp In file included from /usr/include/c++/7/backward/strstream:50:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/colorizer-gl.cpp:20: /usr/include/c++/7/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp] #warning \ ^~~~~~~ [ 55%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/align-gl.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/align-gl.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/align-gl.cpp In file included from /usr/include/c++/7/backward/strstream:50:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/align-gl.cpp:19: /usr/include/c++/7/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp] #warning \ ^~~~~~~ [ 55%] Building C object src/gl/CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/realsense-file/lz4/lz4.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -fPIC -o CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/realsense-file/lz4/lz4.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.h:339, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c:91: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 56%] Building CXX object src/gl/CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/easyloggingpp/src/easylogging++.cc.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DSHARED_LIBS -DUNICODE -Drealsense2_framos_gl_EXPORTS -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -fPIC -std=gnu++11 -o CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/easyloggingpp/src/easylogging++.cc.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/easyloggingpp/src/easylogging++.cc [ 56%] Linking CXX shared library librealsense2-framos-gl.so cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && /usr/bin/cmake -E cmake_link_script CMakeFiles/realsense2-framos-gl.dir/link.txt --verbose=1 ccache /usr/bin/c++ -fPIC -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -shared -Wl,-soname,librealsense2-framos-gl.so.2.29 -o librealsense2-framos-gl.so.2.29.8 CMakeFiles/realsense2-framos-gl.dir/synthetic-stream-gl.cpp.o CMakeFiles/realsense2-framos-gl.dir/yuy2rgb-gl.cpp.o CMakeFiles/realsense2-framos-gl.dir/pointcloud-gl.cpp.o CMakeFiles/realsense2-framos-gl.dir/rs-gl.cpp.o CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/glad/glad.c.o CMakeFiles/realsense2-framos-gl.dir/__/__/common/opengl3.cpp.o CMakeFiles/realsense2-framos-gl.dir/pc-shader.cpp.o CMakeFiles/realsense2-framos-gl.dir/camera-shader.cpp.o CMakeFiles/realsense2-framos-gl.dir/upload.cpp.o CMakeFiles/realsense2-framos-gl.dir/colorizer-gl.cpp.o CMakeFiles/realsense2-framos-gl.dir/align-gl.cpp.o CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/realsense-file/lz4/lz4.c.o CMakeFiles/realsense2-framos-gl.dir/__/__/third-party/easyloggingpp/src/easylogging++.cc.o -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl && /usr/bin/cmake -E cmake_symlink_library librealsense2-framos-gl.so.2.29.8 librealsense2-framos-gl.so.2.29 librealsense2-framos-gl.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 56%] Built target realsense2-framos-gl make -f examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/build.make examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/hello-realsense /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/hello-realsense /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/DependInfo.cmake --color= Scanning dependencies of target rs-hello-realsense make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/build.make examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 56%] Building CXX object examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/rs-hello-realsense.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/hello-realsense && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/hello-realsense/rs-hello-realsense -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-hello-realsense.dir/rs-hello-realsense.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/hello-realsense/rs-hello-realsense.cpp [ 56%] Linking CXX executable rs-hello-realsense-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/hello-realsense && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-hello-realsense.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-hello-realsense.dir/rs-hello-realsense.cpp.o -o rs-hello-realsense-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 56%] Built target rs-hello-realsense make -f examples/software-device/CMakeFiles/rs-software-device.dir/build.make examples/software-device/CMakeFiles/rs-software-device.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-device /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-device/CMakeFiles/rs-software-device.dir/DependInfo.cmake --color= Scanning dependencies of target rs-software-device make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/software-device/CMakeFiles/rs-software-device.dir/build.make examples/software-device/CMakeFiles/rs-software-device.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 56%] Building CXX object examples/software-device/CMakeFiles/rs-software-device.dir/rs-software-device.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-device && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device/rs-software-device -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device/../../common/res -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-software-device.dir/rs-software-device.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device/rs-software-device.cpp [ 57%] Linking CXX executable rs-software-device-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-device && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-software-device.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-software-device.dir/rs-software-device.cpp.o -o rs-software-device-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 57%] Built target rs-software-device make -f examples/capture/CMakeFiles/rs-capture.dir/build.make examples/capture/CMakeFiles/rs-capture.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/capture /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/capture /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/capture/CMakeFiles/rs-capture.dir/DependInfo.cmake --color= Scanning dependencies of target rs-capture make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/capture/CMakeFiles/rs-capture.dir/build.make examples/capture/CMakeFiles/rs-capture.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Building CXX object examples/capture/CMakeFiles/rs-capture.dir/rs-capture.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/capture && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/capture/rs-capture -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/capture/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/capture/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-capture.dir/rs-capture.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/capture/rs-capture.cpp [ 58%] Linking CXX executable rs-capture-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/capture && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-capture.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-capture.dir/rs-capture.cpp.o -o rs-capture-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Built target rs-capture make -f examples/callback/CMakeFiles/rs-callback.dir/build.make examples/callback/CMakeFiles/rs-callback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/callback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/callback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/callback/CMakeFiles/rs-callback.dir/DependInfo.cmake --color= Scanning dependencies of target rs-callback make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/callback/CMakeFiles/rs-callback.dir/build.make examples/callback/CMakeFiles/rs-callback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Building CXX object examples/callback/CMakeFiles/rs-callback.dir/rs-callback.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/callback && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/callback/rs-callback -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/callback/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/callback/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-callback.dir/rs-callback.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/callback/rs-callback.cpp [ 58%] Linking CXX executable rs-callback-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/callback && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-callback.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-callback.dir/rs-callback.cpp.o -o rs-callback-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Built target rs-callback make -f examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/build.make examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/save-to-disk /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/save-to-disk /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/DependInfo.cmake --color= Scanning dependencies of target rs-save-to-disk make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/build.make examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Building CXX object examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/rs-save-to-disk.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/save-to-disk && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/save-to-disk/rs-save-to-disk -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/save-to-disk/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/save-to-disk/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/save-to-disk/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-save-to-disk.dir/rs-save-to-disk.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/save-to-disk/rs-save-to-disk.cpp [ 58%] Linking CXX executable rs-save-to-disk-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/save-to-disk && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-save-to-disk.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-save-to-disk.dir/rs-save-to-disk.cpp.o -o rs-save-to-disk-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Built target rs-save-to-disk make -f examples/multicam/CMakeFiles/rs-multicam.dir/build.make examples/multicam/CMakeFiles/rs-multicam.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/multicam /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/multicam /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/multicam/CMakeFiles/rs-multicam.dir/DependInfo.cmake --color= Scanning dependencies of target rs-multicam make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/multicam/CMakeFiles/rs-multicam.dir/build.make examples/multicam/CMakeFiles/rs-multicam.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Building CXX object examples/multicam/CMakeFiles/rs-multicam.dir/rs-multicam.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/multicam && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/multicam/rs-multicam -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/multicam/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-multicam.dir/rs-multicam.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/multicam/rs-multicam.cpp [ 59%] Linking CXX executable rs-multicam-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/multicam && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-multicam.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-multicam.dir/rs-multicam.cpp.o -o rs-multicam-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 59%] Built target rs-multicam make -f examples/pointcloud/CMakeFiles/rs-pointcloud.dir/build.make examples/pointcloud/CMakeFiles/rs-pointcloud.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pointcloud /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pointcloud /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pointcloud/CMakeFiles/rs-pointcloud.dir/DependInfo.cmake --color= Scanning dependencies of target rs-pointcloud make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pointcloud/CMakeFiles/rs-pointcloud.dir/build.make examples/pointcloud/CMakeFiles/rs-pointcloud.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 59%] Building CXX object examples/pointcloud/CMakeFiles/rs-pointcloud.dir/rs-pointcloud.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pointcloud && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pointcloud/rs-pointcloud -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pointcloud/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-pointcloud.dir/rs-pointcloud.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pointcloud/rs-pointcloud.cpp [ 59%] Linking CXX executable rs-pointcloud-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pointcloud && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-pointcloud.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-pointcloud.dir/rs-pointcloud.cpp.o -o rs-pointcloud-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 59%] Built target rs-pointcloud make -f examples/align/CMakeFiles/rs-align.dir/build.make examples/align/CMakeFiles/rs-align.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align/CMakeFiles/rs-align.dir/DependInfo.cmake --color= Scanning dependencies of target rs-align make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/align/CMakeFiles/rs-align.dir/build.make examples/align/CMakeFiles/rs-align.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 59%] Building CXX object examples/align/CMakeFiles/rs-align.dir/rs-align.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/rs-align -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align.dir/rs-align.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/rs-align.cpp [ 60%] Building CXX object examples/align/CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/rs-align -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui.cpp [ 60%] Building CXX object examples/align/CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui_draw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/rs-align -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui_draw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_draw.cpp [ 60%] Building CXX object examples/align/CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/rs-align -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_impl_glfw.cpp [ 61%] Linking CXX executable rs-align-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-align.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-align.dir/rs-align.cpp.o CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui.cpp.o CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui_draw.cpp.o CMakeFiles/rs-align.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -o rs-align-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 61%] Built target rs-align make -f examples/align-advanced/CMakeFiles/rs-align-advanced.dir/build.make examples/align-advanced/CMakeFiles/rs-align-advanced.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced/CMakeFiles/rs-align-advanced.dir/DependInfo.cmake --color= Scanning dependencies of target rs-align-advanced make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/align-advanced/CMakeFiles/rs-align-advanced.dir/build.make examples/align-advanced/CMakeFiles/rs-align-advanced.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 61%] Building CXX object examples/align-advanced/CMakeFiles/rs-align-advanced.dir/rs-align-advanced.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/rs-align-advanced -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align-advanced.dir/rs-align-advanced.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/rs-align-advanced.cpp [ 61%] Building CXX object examples/align-advanced/CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/rs-align-advanced -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui.cpp [ 62%] Building CXX object examples/align-advanced/CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui_draw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/rs-align-advanced -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui_draw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_draw.cpp [ 62%] Building CXX object examples/align-advanced/CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/rs-align-advanced -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_impl_glfw.cpp [ 62%] Linking CXX executable rs-align-advanced-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-align-advanced.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-align-advanced.dir/rs-align-advanced.cpp.o CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui.cpp.o CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui_draw.cpp.o CMakeFiles/rs-align-advanced.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -o rs-align-advanced-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 62%] Built target rs-align-advanced make -f examples/sensor-control/CMakeFiles/rs-sensor-control.dir/build.make examples/sensor-control/CMakeFiles/rs-sensor-control.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/sensor-control /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/sensor-control /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/sensor-control/CMakeFiles/rs-sensor-control.dir/DependInfo.cmake --color= Scanning dependencies of target rs-sensor-control make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/sensor-control/CMakeFiles/rs-sensor-control.dir/build.make examples/sensor-control/CMakeFiles/rs-sensor-control.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 63%] Building CXX object examples/sensor-control/CMakeFiles/rs-sensor-control.dir/rs-sensor-control.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/sensor-control && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/sensor-control/rs-sensor-control -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-sensor-control.dir/rs-sensor-control.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/sensor-control/rs-sensor-control.cpp [ 63%] Linking CXX executable rs-sensor-control-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/sensor-control && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-sensor-control.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-sensor-control.dir/rs-sensor-control.cpp.o -o rs-sensor-control-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 63%] Built target rs-sensor-control make -f examples/measure/CMakeFiles/rs-measure.dir/build.make examples/measure/CMakeFiles/rs-measure.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/measure /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/measure /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/measure/CMakeFiles/rs-measure.dir/DependInfo.cmake --color= Scanning dependencies of target rs-measure make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/measure/CMakeFiles/rs-measure.dir/build.make examples/measure/CMakeFiles/rs-measure.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 64%] Building CXX object examples/measure/CMakeFiles/rs-measure.dir/rs-measure.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/measure && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/measure/rs-measure -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/measure/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-measure.dir/rs-measure.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/measure/rs-measure.cpp [ 64%] Linking CXX executable rs-measure-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/measure && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-measure.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-measure.dir/rs-measure.cpp.o -o rs-measure-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 64%] Built target rs-measure make -f examples/C/depth/CMakeFiles/rs-depth.dir/build.make examples/C/depth/CMakeFiles/rs-depth.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/depth/CMakeFiles/rs-depth.dir/DependInfo.cmake --color= Scanning dependencies of target rs-depth make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/C/depth/CMakeFiles/rs-depth.dir/build.make examples/C/depth/CMakeFiles/rs-depth.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 64%] Building C object examples/C/depth/CMakeFiles/rs-depth.dir/rs-depth.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/depth && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-depth.dir/rs-depth.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth/rs-depth.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth/../example.h:5, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth/rs-depth.c:9: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth/rs-depth.c: In function ‘main’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth/rs-depth.c:239:31: warning: passing argument 1 of ‘rs2_delete_stream_profile’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] rs2_delete_stream_profile(stream_profile); ^~~~~~~~~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include/librealsense2-framos/h/rs_device.h:17:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include/librealsense2-framos/rs.h:18, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth/rs-depth.c:5: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include/librealsense2-framos/h/rs_sensor.h:384:6: note: expected ‘rs2_stream_profile * {aka struct rs2_stream_profile *}’ but argument is of type ‘const rs2_stream_profile * {aka const struct rs2_stream_profile *}’ void rs2_delete_stream_profile(rs2_stream_profile* mode); ^~~~~~~~~~~~~~~~~~~~~~~~~ [ 65%] Linking C executable rs-depth-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/depth && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-depth.dir/link.txt --verbose=1 ccache /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -rdynamic CMakeFiles/rs-depth.dir/rs-depth.c.o -o rs-depth-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../../librealsense2-framos.so.2.29.8 ../../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 65%] Built target rs-depth make -f examples/C/color/CMakeFiles/rs-color.dir/build.make examples/C/color/CMakeFiles/rs-color.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/color /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/color /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/color/CMakeFiles/rs-color.dir/DependInfo.cmake --color= Scanning dependencies of target rs-color make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/C/color/CMakeFiles/rs-color.dir/build.make examples/C/color/CMakeFiles/rs-color.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 65%] Building C object examples/C/color/CMakeFiles/rs-color.dir/rs-color.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/color && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-color.dir/rs-color.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/color/rs-color.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdlib.h:25, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/color/rs-color.c:9: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 66%] Linking C executable rs-color-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/color && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-color.dir/link.txt --verbose=1 ccache /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -rdynamic CMakeFiles/rs-color.dir/rs-color.c.o -o rs-color-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../../librealsense2-framos.so.2.29.8 ../../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 66%] Built target rs-color make -f examples/C/distance/CMakeFiles/rs-distance.dir/build.make examples/C/distance/CMakeFiles/rs-distance.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/distance /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/distance /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/distance/CMakeFiles/rs-distance.dir/DependInfo.cmake --color= Scanning dependencies of target rs-distance make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/C/distance/CMakeFiles/rs-distance.dir/build.make examples/C/distance/CMakeFiles/rs-distance.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 66%] Building C object examples/C/distance/CMakeFiles/rs-distance.dir/rs-distance.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/distance && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-distance.dir/rs-distance.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/distance/rs-distance.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/distance/../example.h:5, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/distance/rs-distance.c:9: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 66%] Linking C executable rs-distance-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/distance && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-distance.dir/link.txt --verbose=1 ccache /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -rdynamic CMakeFiles/rs-distance.dir/rs-distance.c.o -o rs-distance-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../../librealsense2-framos.so.2.29.8 ../../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 66%] Built target rs-distance make -f examples/post-processing/CMakeFiles/rs-post-processing.dir/build.make examples/post-processing/CMakeFiles/rs-post-processing.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing/CMakeFiles/rs-post-processing.dir/DependInfo.cmake --color= Scanning dependencies of target rs-post-processing make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/post-processing/CMakeFiles/rs-post-processing.dir/build.make examples/post-processing/CMakeFiles/rs-post-processing.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 66%] Building CXX object examples/post-processing/CMakeFiles/rs-post-processing.dir/rs-post-processing.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/rs-post-processing -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-post-processing.dir/rs-post-processing.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/rs-post-processing.cpp [ 67%] Building CXX object examples/post-processing/CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/rs-post-processing -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui.cpp [ 67%] Building CXX object examples/post-processing/CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui_draw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/rs-post-processing -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui_draw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_draw.cpp [ 67%] Building CXX object examples/post-processing/CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/rs-post-processing -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_impl_glfw.cpp [ 68%] Linking CXX executable rs-post-processing-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-post-processing.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-post-processing.dir/rs-post-processing.cpp.o CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui.cpp.o CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui_draw.cpp.o CMakeFiles/rs-post-processing.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -o rs-post-processing-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 68%] Built target rs-post-processing make -f examples/record-playback/CMakeFiles/rs-record-playback.dir/build.make examples/record-playback/CMakeFiles/rs-record-playback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback/CMakeFiles/rs-record-playback.dir/DependInfo.cmake --color= Scanning dependencies of target rs-record-playback make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/record-playback/CMakeFiles/rs-record-playback.dir/build.make examples/record-playback/CMakeFiles/rs-record-playback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 69%] Building CXX object examples/record-playback/CMakeFiles/rs-record-playback.dir/rs-record-playback.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/rs-record-playback -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-record-playback.dir/rs-record-playback.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/rs-record-playback.cpp [ 69%] Building CXX object examples/record-playback/CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/rs-record-playback -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui.cpp [ 69%] Building CXX object examples/record-playback/CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui_draw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/rs-record-playback -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui_draw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_draw.cpp [ 70%] Building CXX object examples/record-playback/CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/rs-record-playback -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_impl_glfw.cpp [ 70%] Linking CXX executable rs-record-playback-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-record-playback.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-record-playback.dir/rs-record-playback.cpp.o CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui.cpp.o CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui_draw.cpp.o CMakeFiles/rs-record-playback.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -o rs-record-playback-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 70%] Built target rs-record-playback make -f examples/motion/CMakeFiles/rs-motion.dir/build.make examples/motion/CMakeFiles/rs-motion.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/motion /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/motion /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/motion/CMakeFiles/rs-motion.dir/DependInfo.cmake --color= Scanning dependencies of target rs-motion make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/motion/CMakeFiles/rs-motion.dir/build.make examples/motion/CMakeFiles/rs-motion.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 70%] Building CXX object examples/motion/CMakeFiles/rs-motion.dir/rs-motion.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/motion && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/motion/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/motion/../../common/res -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-motion.dir/rs-motion.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/motion/rs-motion.cpp [ 71%] Building C object examples/motion/CMakeFiles/rs-motion.dir/__/__/third-party/realsense-file/lz4/lz4.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/motion && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/motion/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/motion/../../common/res -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-motion.dir/__/__/third-party/realsense-file/lz4/lz4.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.h:339, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c:91: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 71%] Linking CXX executable rs-motion-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/motion && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-motion.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-motion.dir/rs-motion.cpp.o CMakeFiles/rs-motion.dir/__/__/third-party/realsense-file/lz4/lz4.c.o -o rs-motion-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 71%] Built target rs-motion make -f examples/gl/CMakeFiles/rs-gl.dir/build.make examples/gl/CMakeFiles/rs-gl.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/gl/CMakeFiles/rs-gl.dir/DependInfo.cmake --color= Scanning dependencies of target rs-gl make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/gl/CMakeFiles/rs-gl.dir/build.make examples/gl/CMakeFiles/rs-gl.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 71%] Building CXX object examples/gl/CMakeFiles/rs-gl.dir/rs-gl.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/gl && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/gl/rs-gl -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/gl/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -std=gnu++11 -o CMakeFiles/rs-gl.dir/rs-gl.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/gl/rs-gl.cpp [ 72%] Linking CXX executable rs-gl-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/gl && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-gl.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -rdynamic CMakeFiles/rs-gl.dir/rs-gl.cpp.o -o rs-gl-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl:/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../third-party/glfw/src/libglfw3.a -lGL -lGLU ../../src/gl/librealsense2-framos-gl.so.2.29.8 -lrt -lm -ldl -lX11 ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 72%] Built target rs-gl make -f examples/pose/CMakeFiles/rs-pose.dir/build.make examples/pose/CMakeFiles/rs-pose.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose/CMakeFiles/rs-pose.dir/DependInfo.cmake --color= Scanning dependencies of target rs-pose make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pose/CMakeFiles/rs-pose.dir/build.make examples/pose/CMakeFiles/rs-pose.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 73%] Building CXX object examples/pose/CMakeFiles/rs-pose.dir/rs-pose.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-pose.dir/rs-pose.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose/rs-pose.cpp [ 73%] Linking CXX executable rs-pose-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-pose.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-pose.dir/rs-pose.cpp.o -o rs-pose-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 73%] Built target rs-pose make -f examples/pose-predict/CMakeFiles/rs-pose-predict.dir/build.make examples/pose-predict/CMakeFiles/rs-pose-predict.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose-predict /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-predict /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-predict/CMakeFiles/rs-pose-predict.dir/DependInfo.cmake --color= Scanning dependencies of target rs-pose-predict make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pose-predict/CMakeFiles/rs-pose-predict.dir/build.make examples/pose-predict/CMakeFiles/rs-pose-predict.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 74%] Building CXX object examples/pose-predict/CMakeFiles/rs-pose-predict.dir/rs-pose-predict.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-predict && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-pose-predict.dir/rs-pose-predict.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose-predict/rs-pose-predict.cpp [ 74%] Linking CXX executable rs-pose-predict-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-predict && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-pose-predict.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-pose-predict.dir/rs-pose-predict.cpp.o -o rs-pose-predict-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 74%] Built target rs-pose-predict make -f examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/build.make examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose-and-image /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-and-image /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/DependInfo.cmake --color= Scanning dependencies of target rs-pose-and-image make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/build.make examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 74%] Building CXX object examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/rs-pose-and-image.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-and-image && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -std=gnu++11 -o CMakeFiles/rs-pose-and-image.dir/rs-pose-and-image.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose-and-image/rs-pose-and-image.cpp [ 74%] Linking CXX executable rs-pose-and-image-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-and-image && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-pose-and-image.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -rdynamic CMakeFiles/rs-pose-and-image.dir/rs-pose-and-image.cpp.o -o rs-pose-and-image-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 74%] Built target rs-pose-and-image make -f examples/trajectory/CMakeFiles/rs-trajectory.dir/build.make examples/trajectory/CMakeFiles/rs-trajectory.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/trajectory /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/trajectory /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/trajectory/CMakeFiles/rs-trajectory.dir/DependInfo.cmake --color= Scanning dependencies of target rs-trajectory make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/trajectory/CMakeFiles/rs-trajectory.dir/build.make examples/trajectory/CMakeFiles/rs-trajectory.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 74%] Building CXX object examples/trajectory/CMakeFiles/rs-trajectory.dir/rs-trajectory.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/trajectory && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/trajectory/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/trajectory/../../common/res -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-trajectory.dir/rs-trajectory.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/trajectory/rs-trajectory.cpp [ 75%] Building C object examples/trajectory/CMakeFiles/rs-trajectory.dir/__/__/third-party/realsense-file/lz4/lz4.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/trajectory && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/trajectory/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/trajectory/../../common/res -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4 -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-trajectory.dir/__/__/third-party/realsense-file/lz4/lz4.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdint.h:26, from /usr/lib/gcc/x86_64-linux-gnu/7/include/stdint.h:9, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.h:339, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lz4.c:91: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 75%] Linking CXX executable rs-trajectory-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/trajectory && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-trajectory.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-trajectory.dir/rs-trajectory.cpp.o CMakeFiles/rs-trajectory.dir/__/__/third-party/realsense-file/lz4/lz4.c.o -o rs-trajectory-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 75%] Built target rs-trajectory make -f examples/ar-basic/CMakeFiles/rs-ar-basic.dir/build.make examples/ar-basic/CMakeFiles/rs-ar-basic.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/ar-basic /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/ar-basic /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/ar-basic/CMakeFiles/rs-ar-basic.dir/DependInfo.cmake --color= Scanning dependencies of target rs-ar-basic make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/ar-basic/CMakeFiles/rs-ar-basic.dir/build.make examples/ar-basic/CMakeFiles/rs-ar-basic.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 76%] Building CXX object examples/ar-basic/CMakeFiles/rs-ar-basic.dir/rs-ar-basic.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/ar-basic && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/ar-basic/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -std=gnu++11 -o CMakeFiles/rs-ar-basic.dir/rs-ar-basic.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/ar-basic/rs-ar-basic.cpp [ 76%] Linking CXX executable rs-ar-basic-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/ar-basic && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-ar-basic.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -rdynamic CMakeFiles/rs-ar-basic.dir/rs-ar-basic.cpp.o -o rs-ar-basic-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 76%] Built target rs-ar-basic make -f examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/build.make examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/tracking-and-depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/DependInfo.cmake --color= Scanning dependencies of target rs-tracking-and-depth make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/build.make examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Building CXX object examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/rs-tracking-and-depth.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/tracking-and-depth/rs-tracking-and-depth -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/tracking-and-depth/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-tracking-and-depth.dir/rs-tracking-and-depth.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/tracking-and-depth/rs-tracking-and-depth.cpp [ 77%] Linking CXX executable rs-tracking-and-depth-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-tracking-and-depth.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-tracking-and-depth.dir/rs-tracking-and-depth.cpp.o -o rs-tracking-and-depth-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth && /usr/bin/cmake -E copy /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/tracking-and-depth/H_t265_d400.cfg /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth/H_t265_d400.cfg make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Built target rs-tracking-and-depth make -f examples/software-trigger/CMakeFiles/rs-software-trigger.dir/build.make examples/software-trigger/CMakeFiles/rs-software-trigger.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-trigger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-trigger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-trigger/CMakeFiles/rs-software-trigger.dir/DependInfo.cmake --color= Scanning dependencies of target rs-software-trigger make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/software-trigger/CMakeFiles/rs-software-trigger.dir/build.make examples/software-trigger/CMakeFiles/rs-software-trigger.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Building CXX object examples/software-trigger/CMakeFiles/rs-software-trigger.dir/rs-software-trigger.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-trigger && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-trigger/rs-software-trigger -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-trigger/.. -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-software-trigger.dir/rs-software-trigger.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-trigger/rs-software-trigger.cpp [ 77%] Linking CXX executable rs-software-trigger-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-trigger && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-software-trigger.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-software-trigger.dir/rs-software-trigger.cpp.o -o rs-software-trigger-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 ../../third-party/glfw/src/libglfw3.a -lGL -lGLU /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so -lrt -lm -ldl -lX11 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Built target rs-software-trigger make -f tools/convert/CMakeFiles/rs-convert.dir/build.make tools/convert/CMakeFiles/rs-convert.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/convert /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/convert /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/convert/CMakeFiles/rs-convert.dir/DependInfo.cmake --color= Scanning dependencies of target rs-convert make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/convert/CMakeFiles/rs-convert.dir/build.make tools/convert/CMakeFiles/rs-convert.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Building CXX object tools/convert/CMakeFiles/rs-convert.dir/rs-convert.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/convert && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/convert/rs-convert -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/convert/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/convert/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/convert/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-convert.dir/rs-convert.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/convert/rs-convert.cpp [ 77%] Linking CXX executable rs-convert-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/convert && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-convert.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-convert.dir/rs-convert.cpp.o -o rs-convert-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Built target rs-convert make -f tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/build.make tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/enumerate-devices /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/enumerate-devices /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/DependInfo.cmake --color= Scanning dependencies of target rs-enumerate-devices make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/build.make tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 78%] Building CXX object tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/rs-enumerate-devices.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/enumerate-devices && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/enumerate-devices/rs-enumerate-devices -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/enumerate-devices/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-enumerate-devices.dir/rs-enumerate-devices.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/enumerate-devices/rs-enumerate-devices.cpp [ 78%] Linking CXX executable rs-enumerate-devices-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/enumerate-devices && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-enumerate-devices.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-enumerate-devices.dir/rs-enumerate-devices.cpp.o -o rs-enumerate-devices-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 78%] Built target rs-enumerate-devices make -f tools/fw-logger/CMakeFiles/rs-fw-logger.dir/build.make tools/fw-logger/CMakeFiles/rs-fw-logger.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger/CMakeFiles/rs-fw-logger.dir/DependInfo.cmake --color= Scanning dependencies of target rs-fw-logger make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/fw-logger/CMakeFiles/rs-fw-logger.dir/build.make tools/fw-logger/CMakeFiles/rs-fw-logger.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 78%] Building CXX object tools/fw-logger/CMakeFiles/rs-fw-logger.dir/rs-fw-logger.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/rs-fw-logger -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/cpp-fw-logger-helpers -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-fw-logger.dir/rs-fw-logger.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/rs-fw-logger.cpp [ 79%] Building CXX object tools/fw-logger/CMakeFiles/rs-fw-logger.dir/fw-log-data.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/rs-fw-logger -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/cpp-fw-logger-helpers -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-fw-logger.dir/fw-log-data.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/fw-log-data.cpp [ 79%] Building CXX object tools/fw-logger/CMakeFiles/rs-fw-logger.dir/fw-logs-formating-options.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/rs-fw-logger -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/cpp-fw-logger-helpers -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-fw-logger.dir/fw-logs-formating-options.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/fw-logs-formating-options.cpp [ 79%] Building CXX object tools/fw-logger/CMakeFiles/rs-fw-logger.dir/fw-logs-parser.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/rs-fw-logger -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/cpp-fw-logger-helpers -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-fw-logger.dir/fw-logs-parser.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/fw-logs-parser.cpp [ 80%] Building CXX object tools/fw-logger/CMakeFiles/rs-fw-logger.dir/fw-logs-xml-helper.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/rs-fw-logger -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/cpp-fw-logger-helpers -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-fw-logger.dir/fw-logs-xml-helper.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/fw-logs-xml-helper.cpp [ 80%] Building CXX object tools/fw-logger/CMakeFiles/rs-fw-logger.dir/string-formatter.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/rs-fw-logger -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/cpp-fw-logger-helpers -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-fw-logger.dir/string-formatter.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger/string-formatter.cpp [ 80%] Linking CXX executable rs-fw-logger-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-fw-logger.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-fw-logger.dir/rs-fw-logger.cpp.o CMakeFiles/rs-fw-logger.dir/fw-log-data.cpp.o CMakeFiles/rs-fw-logger.dir/fw-logs-formating-options.cpp.o CMakeFiles/rs-fw-logger.dir/fw-logs-parser.cpp.o CMakeFiles/rs-fw-logger.dir/fw-logs-xml-helper.cpp.o CMakeFiles/rs-fw-logger.dir/string-formatter.cpp.o -o rs-fw-logger-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: -lpthread ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 80%] Built target rs-fw-logger make -f tools/terminal/CMakeFiles/rs-terminal.dir/build.make tools/terminal/CMakeFiles/rs-terminal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/terminal /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/terminal/CMakeFiles/rs-terminal.dir/DependInfo.cmake --color= Scanning dependencies of target rs-terminal make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/terminal/CMakeFiles/rs-terminal.dir/build.make tools/terminal/CMakeFiles/rs-terminal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 81%] Building CXX object tools/terminal/CMakeFiles/rs-terminal.dir/rs-terminal.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/terminal && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/rs-terminal -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-terminal.dir/rs-terminal.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/rs-terminal.cpp [ 81%] Building CXX object tools/terminal/CMakeFiles/rs-terminal.dir/auto-complete.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/terminal && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/rs-terminal -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-terminal.dir/auto-complete.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal/auto-complete.cpp [ 81%] Linking CXX executable rs-terminal-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/terminal && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-terminal.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-terminal.dir/rs-terminal.cpp.o CMakeFiles/rs-terminal.dir/auto-complete.cpp.o -o rs-terminal-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: -lpthread ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 81%] Built target rs-terminal make -f tools/recorder/CMakeFiles/rs-record.dir/build.make tools/recorder/CMakeFiles/rs-record.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/recorder /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/recorder /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/recorder/CMakeFiles/rs-record.dir/DependInfo.cmake --color= Scanning dependencies of target rs-record make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/recorder/CMakeFiles/rs-record.dir/build.make tools/recorder/CMakeFiles/rs-record.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 81%] Building CXX object tools/recorder/CMakeFiles/rs-record.dir/rs-record.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/recorder && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/recorder/rs-record -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/recorder/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/recorder/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-record.dir/rs-record.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/recorder/rs-record.cpp [ 81%] Linking CXX executable rs-record-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/recorder && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-record.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-record.dir/rs-record.cpp.o -o rs-record-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 81%] Built target rs-record make -f tools/fw-update/CMakeFiles/rs-fw-update.dir/build.make tools/fw-update/CMakeFiles/rs-fw-update.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-update /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-update /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-update/CMakeFiles/rs-fw-update.dir/DependInfo.cmake --color= Scanning dependencies of target rs-fw-update make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/fw-update/CMakeFiles/rs-fw-update.dir/build.make tools/fw-update/CMakeFiles/rs-fw-update.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 82%] Building CXX object tools/fw-update/CMakeFiles/rs-fw-update.dir/rs-fw-update.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-update && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-update/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-fw-update.dir/rs-fw-update.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-update/rs-fw-update.cpp [ 82%] Linking CXX executable rs-fw-update-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-update && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-fw-update.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-fw-update.dir/rs-fw-update.cpp.o -o rs-fw-update-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 82%] Built target rs-fw-update make -f tools/data-collect/CMakeFiles/rs-data-collect.dir/build.make tools/data-collect/CMakeFiles/rs-data-collect.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/data-collect /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/data-collect /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/data-collect/CMakeFiles/rs-data-collect.dir/DependInfo.cmake --color= Scanning dependencies of target rs-data-collect make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/data-collect/CMakeFiles/rs-data-collect.dir/build.make tools/data-collect/CMakeFiles/rs-data-collect.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 83%] Building CXX object tools/data-collect/CMakeFiles/rs-data-collect.dir/rs-data-collect.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/data-collect && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/data-collect/rs-data-collect -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/data-collect/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/data-collect/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-data-collect.dir/rs-data-collect.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/data-collect/rs-data-collect.cpp [ 83%] Linking CXX executable rs-data-collect-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/data-collect && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-data-collect.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-data-collect.dir/rs-data-collect.cpp.o -o rs-data-collect-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl:/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../third-party/glfw/src/libglfw3.a -lGL -lGLU ../../src/gl/librealsense2-framos-gl.so.2.29.8 -lrt -lm -ldl -lX11 ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 83%] Built target rs-data-collect make -f common/fw/CMakeFiles/uvc_fw.dir/build.make common/fw/CMakeFiles/uvc_fw.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw/CMakeFiles/uvc_fw.dir/DependInfo.cmake --color= Scanning dependencies of target uvc_fw make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f common/fw/CMakeFiles/uvc_fw.dir/build.make common/fw/CMakeFiles/uvc_fw.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 83%] Building C object common/fw/CMakeFiles/uvc_fw.dir/empty.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/uvc_fw.dir/empty.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/fw/empty.c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/fw/empty.c:1:0: warning: ISO C forbids an empty translation unit [-Wpedantic] [ 84%] Building C object common/fw/CMakeFiles/uvc_fw.dir/D4XX_FW_Image.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/uvc_fw.dir/D4XX_FW_Image.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw/D4XX_FW_Image.c [ 84%] Building C object common/fw/CMakeFiles/uvc_fw.dir/D4XX_RC_Image.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/uvc_fw.dir/D4XX_RC_Image.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw/D4XX_RC_Image.c [ 84%] Building C object common/fw/CMakeFiles/uvc_fw.dir/SR3XX_FW_Image.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/uvc_fw.dir/SR3XX_FW_Image.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw/SR3XX_FW_Image.c [ 85%] Linking C static library libuvc_fw.a cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw && /usr/bin/cmake -P CMakeFiles/uvc_fw.dir/cmake_clean_target.cmake cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw && /usr/bin/cmake -E cmake_link_script CMakeFiles/uvc_fw.dir/link.txt --verbose=1 ccache /usr/bin/ar qc libuvc_fw.a CMakeFiles/uvc_fw.dir/empty.c.o CMakeFiles/uvc_fw.dir/D4XX_FW_Image.c.o CMakeFiles/uvc_fw.dir/D4XX_RC_Image.c.o CMakeFiles/uvc_fw.dir/SR3XX_FW_Image.c.o ccache /usr/bin/ranlib libuvc_fw.a make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 85%] Built target uvc_fw make -f tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/build.make tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/DependInfo.cmake --color= Scanning dependencies of target realsense-viewer make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/build.make tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 85%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/model-views.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/model-views.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/model-views.cpp [ 85%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/notifications.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/notifications.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/notifications.cpp [ 86%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/viewer.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/viewer.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/viewer.cpp [ 86%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/ux-window.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/ux-window.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/ux-window.cpp [ 86%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/ux-alignment.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/ux-alignment.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/ux-alignment.cpp [ 87%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/opengl3.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/opengl3.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/opengl3.cpp [ 87%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/rs-config.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/rs-config.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/rs-config.cpp [ 87%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/os.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/os.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/os.cpp [ 88%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/fw-update-helper.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/fw-update-helper.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/fw-update-helper.cpp [ 88%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/common/on-chip-calib.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/common/on-chip-calib.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/on-chip-calib.cpp [ 88%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/realsense-viewer.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/realsense-viewer.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer.cpp [ 89%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui.cpp [ 89%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui_draw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui_draw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_draw.cpp [ 89%] Building CXX object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_impl_glfw.cpp [ 90%] Building C object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/third-party/glad/glad.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/realsense-viewer.dir/__/__/third-party/glad/glad.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:26: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:864:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:865:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:866:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glHint = (PFNGLHINTPROC)load("glHint"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:867:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:868:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:869:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:870:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:871:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:872:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:873:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:874:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:875:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:876:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:877:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:878:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClear = (PFNGLCLEARPROC)load("glClear"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:879:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:880:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:881:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:882:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:883:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:884:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:885:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:886:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:887:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:888:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:889:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:890:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:891:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:892:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:893:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:894:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:895:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:896:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:897:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:898:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:899:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:900:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:901:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:902:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:903:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:904:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:905:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:906:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:907:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:908:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:909:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:910:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:911:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:912:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNewList = (PFNGLNEWLISTPROC)load("glNewList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:913:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndList = (PFNGLENDLISTPROC)load("glEndList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:914:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallList = (PFNGLCALLLISTPROC)load("glCallList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:915:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallLists = (PFNGLCALLLISTSPROC)load("glCallLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:916:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteLists = (PFNGLDELETELISTSPROC)load("glDeleteLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:917:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenLists = (PFNGLGENLISTSPROC)load("glGenLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:918:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glListBase = (PFNGLLISTBASEPROC)load("glListBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:919:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBegin = (PFNGLBEGINPROC)load("glBegin"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:920:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBitmap = (PFNGLBITMAPPROC)load("glBitmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:921:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3b = (PFNGLCOLOR3BPROC)load("glColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:922:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3bv = (PFNGLCOLOR3BVPROC)load("glColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:923:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3d = (PFNGLCOLOR3DPROC)load("glColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:924:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3dv = (PFNGLCOLOR3DVPROC)load("glColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:925:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3f = (PFNGLCOLOR3FPROC)load("glColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:926:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3fv = (PFNGLCOLOR3FVPROC)load("glColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:927:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3i = (PFNGLCOLOR3IPROC)load("glColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:928:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3iv = (PFNGLCOLOR3IVPROC)load("glColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:929:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3s = (PFNGLCOLOR3SPROC)load("glColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:930:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3sv = (PFNGLCOLOR3SVPROC)load("glColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:931:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ub = (PFNGLCOLOR3UBPROC)load("glColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:932:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ubv = (PFNGLCOLOR3UBVPROC)load("glColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:933:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ui = (PFNGLCOLOR3UIPROC)load("glColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:934:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3uiv = (PFNGLCOLOR3UIVPROC)load("glColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:935:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3us = (PFNGLCOLOR3USPROC)load("glColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:936:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3usv = (PFNGLCOLOR3USVPROC)load("glColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:937:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4b = (PFNGLCOLOR4BPROC)load("glColor4b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:938:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4bv = (PFNGLCOLOR4BVPROC)load("glColor4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:939:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4d = (PFNGLCOLOR4DPROC)load("glColor4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:940:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4dv = (PFNGLCOLOR4DVPROC)load("glColor4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:941:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4f = (PFNGLCOLOR4FPROC)load("glColor4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:942:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4fv = (PFNGLCOLOR4FVPROC)load("glColor4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:943:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4i = (PFNGLCOLOR4IPROC)load("glColor4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:944:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4iv = (PFNGLCOLOR4IVPROC)load("glColor4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:945:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4s = (PFNGLCOLOR4SPROC)load("glColor4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:946:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4sv = (PFNGLCOLOR4SVPROC)load("glColor4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:947:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ub = (PFNGLCOLOR4UBPROC)load("glColor4ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:948:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ubv = (PFNGLCOLOR4UBVPROC)load("glColor4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:949:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ui = (PFNGLCOLOR4UIPROC)load("glColor4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:950:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4uiv = (PFNGLCOLOR4UIVPROC)load("glColor4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:951:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4us = (PFNGLCOLOR4USPROC)load("glColor4us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:952:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4usv = (PFNGLCOLOR4USVPROC)load("glColor4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:953:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlag = (PFNGLEDGEFLAGPROC)load("glEdgeFlag"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:954:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagv = (PFNGLEDGEFLAGVPROC)load("glEdgeFlagv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:955:15: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnd = (PFNGLENDPROC)load("glEnd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:956:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexd = (PFNGLINDEXDPROC)load("glIndexd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:957:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexdv = (PFNGLINDEXDVPROC)load("glIndexdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:958:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexf = (PFNGLINDEXFPROC)load("glIndexf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:959:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexfv = (PFNGLINDEXFVPROC)load("glIndexfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:960:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexi = (PFNGLINDEXIPROC)load("glIndexi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:961:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexiv = (PFNGLINDEXIVPROC)load("glIndexiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:962:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexs = (PFNGLINDEXSPROC)load("glIndexs"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:963:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexsv = (PFNGLINDEXSVPROC)load("glIndexsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:964:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3b = (PFNGLNORMAL3BPROC)load("glNormal3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:965:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3bv = (PFNGLNORMAL3BVPROC)load("glNormal3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:966:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3d = (PFNGLNORMAL3DPROC)load("glNormal3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:967:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3dv = (PFNGLNORMAL3DVPROC)load("glNormal3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:968:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3f = (PFNGLNORMAL3FPROC)load("glNormal3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:969:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3fv = (PFNGLNORMAL3FVPROC)load("glNormal3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:970:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3i = (PFNGLNORMAL3IPROC)load("glNormal3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:971:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3iv = (PFNGLNORMAL3IVPROC)load("glNormal3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:972:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3s = (PFNGLNORMAL3SPROC)load("glNormal3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:973:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3sv = (PFNGLNORMAL3SVPROC)load("glNormal3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:974:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2d = (PFNGLRASTERPOS2DPROC)load("glRasterPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:975:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2dv = (PFNGLRASTERPOS2DVPROC)load("glRasterPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:976:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2f = (PFNGLRASTERPOS2FPROC)load("glRasterPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:977:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2fv = (PFNGLRASTERPOS2FVPROC)load("glRasterPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:978:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2i = (PFNGLRASTERPOS2IPROC)load("glRasterPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:979:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2iv = (PFNGLRASTERPOS2IVPROC)load("glRasterPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:980:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2s = (PFNGLRASTERPOS2SPROC)load("glRasterPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:981:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2sv = (PFNGLRASTERPOS2SVPROC)load("glRasterPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:982:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3d = (PFNGLRASTERPOS3DPROC)load("glRasterPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:983:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3dv = (PFNGLRASTERPOS3DVPROC)load("glRasterPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:984:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3f = (PFNGLRASTERPOS3FPROC)load("glRasterPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:985:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3fv = (PFNGLRASTERPOS3FVPROC)load("glRasterPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:986:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3i = (PFNGLRASTERPOS3IPROC)load("glRasterPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:987:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3iv = (PFNGLRASTERPOS3IVPROC)load("glRasterPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:988:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3s = (PFNGLRASTERPOS3SPROC)load("glRasterPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:989:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3sv = (PFNGLRASTERPOS3SVPROC)load("glRasterPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:990:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4d = (PFNGLRASTERPOS4DPROC)load("glRasterPos4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:991:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4dv = (PFNGLRASTERPOS4DVPROC)load("glRasterPos4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:992:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4f = (PFNGLRASTERPOS4FPROC)load("glRasterPos4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:993:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4fv = (PFNGLRASTERPOS4FVPROC)load("glRasterPos4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:994:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4i = (PFNGLRASTERPOS4IPROC)load("glRasterPos4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:995:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4iv = (PFNGLRASTERPOS4IVPROC)load("glRasterPos4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:996:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4s = (PFNGLRASTERPOS4SPROC)load("glRasterPos4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:997:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4sv = (PFNGLRASTERPOS4SVPROC)load("glRasterPos4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:998:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectd = (PFNGLRECTDPROC)load("glRectd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:999:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectdv = (PFNGLRECTDVPROC)load("glRectdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1000:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectf = (PFNGLRECTFPROC)load("glRectf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1001:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectfv = (PFNGLRECTFVPROC)load("glRectfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1002:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRecti = (PFNGLRECTIPROC)load("glRecti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1003:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectiv = (PFNGLRECTIVPROC)load("glRectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1004:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRects = (PFNGLRECTSPROC)load("glRects"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1005:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectsv = (PFNGLRECTSVPROC)load("glRectsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1006:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1d = (PFNGLTEXCOORD1DPROC)load("glTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1007:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1dv = (PFNGLTEXCOORD1DVPROC)load("glTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1008:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1f = (PFNGLTEXCOORD1FPROC)load("glTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1009:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1fv = (PFNGLTEXCOORD1FVPROC)load("glTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1010:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1i = (PFNGLTEXCOORD1IPROC)load("glTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1011:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1iv = (PFNGLTEXCOORD1IVPROC)load("glTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1012:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1s = (PFNGLTEXCOORD1SPROC)load("glTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1013:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1sv = (PFNGLTEXCOORD1SVPROC)load("glTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1014:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2d = (PFNGLTEXCOORD2DPROC)load("glTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1015:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2dv = (PFNGLTEXCOORD2DVPROC)load("glTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1016:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2f = (PFNGLTEXCOORD2FPROC)load("glTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1017:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2fv = (PFNGLTEXCOORD2FVPROC)load("glTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1018:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2i = (PFNGLTEXCOORD2IPROC)load("glTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1019:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2iv = (PFNGLTEXCOORD2IVPROC)load("glTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1020:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2s = (PFNGLTEXCOORD2SPROC)load("glTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1021:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2sv = (PFNGLTEXCOORD2SVPROC)load("glTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1022:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3d = (PFNGLTEXCOORD3DPROC)load("glTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1023:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3dv = (PFNGLTEXCOORD3DVPROC)load("glTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1024:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3f = (PFNGLTEXCOORD3FPROC)load("glTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1025:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3fv = (PFNGLTEXCOORD3FVPROC)load("glTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1026:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3i = (PFNGLTEXCOORD3IPROC)load("glTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1027:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3iv = (PFNGLTEXCOORD3IVPROC)load("glTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1028:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3s = (PFNGLTEXCOORD3SPROC)load("glTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1029:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3sv = (PFNGLTEXCOORD3SVPROC)load("glTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1030:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4d = (PFNGLTEXCOORD4DPROC)load("glTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1031:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4dv = (PFNGLTEXCOORD4DVPROC)load("glTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1032:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4f = (PFNGLTEXCOORD4FPROC)load("glTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1033:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4fv = (PFNGLTEXCOORD4FVPROC)load("glTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1034:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4i = (PFNGLTEXCOORD4IPROC)load("glTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1035:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4iv = (PFNGLTEXCOORD4IVPROC)load("glTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1036:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4s = (PFNGLTEXCOORD4SPROC)load("glTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1037:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4sv = (PFNGLTEXCOORD4SVPROC)load("glTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1038:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2d = (PFNGLVERTEX2DPROC)load("glVertex2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1039:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2dv = (PFNGLVERTEX2DVPROC)load("glVertex2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1040:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2f = (PFNGLVERTEX2FPROC)load("glVertex2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1041:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2fv = (PFNGLVERTEX2FVPROC)load("glVertex2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1042:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2i = (PFNGLVERTEX2IPROC)load("glVertex2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1043:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2iv = (PFNGLVERTEX2IVPROC)load("glVertex2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1044:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2s = (PFNGLVERTEX2SPROC)load("glVertex2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1045:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2sv = (PFNGLVERTEX2SVPROC)load("glVertex2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1046:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3d = (PFNGLVERTEX3DPROC)load("glVertex3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1047:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3dv = (PFNGLVERTEX3DVPROC)load("glVertex3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1048:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3f = (PFNGLVERTEX3FPROC)load("glVertex3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1049:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3fv = (PFNGLVERTEX3FVPROC)load("glVertex3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1050:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3i = (PFNGLVERTEX3IPROC)load("glVertex3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1051:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3iv = (PFNGLVERTEX3IVPROC)load("glVertex3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1052:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3s = (PFNGLVERTEX3SPROC)load("glVertex3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1053:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3sv = (PFNGLVERTEX3SVPROC)load("glVertex3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1054:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4d = (PFNGLVERTEX4DPROC)load("glVertex4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1055:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4dv = (PFNGLVERTEX4DVPROC)load("glVertex4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1056:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4f = (PFNGLVERTEX4FPROC)load("glVertex4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1057:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4fv = (PFNGLVERTEX4FVPROC)load("glVertex4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1058:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4i = (PFNGLVERTEX4IPROC)load("glVertex4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1059:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4iv = (PFNGLVERTEX4IVPROC)load("glVertex4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1060:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4s = (PFNGLVERTEX4SPROC)load("glVertex4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1061:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4sv = (PFNGLVERTEX4SVPROC)load("glVertex4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1062:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClipPlane = (PFNGLCLIPPLANEPROC)load("glClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1063:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaterial = (PFNGLCOLORMATERIALPROC)load("glColorMaterial"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1064:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogf = (PFNGLFOGFPROC)load("glFogf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1065:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogfv = (PFNGLFOGFVPROC)load("glFogfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1066:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogi = (PFNGLFOGIPROC)load("glFogi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1067:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogiv = (PFNGLFOGIVPROC)load("glFogiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1068:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightf = (PFNGLLIGHTFPROC)load("glLightf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1069:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightfv = (PFNGLLIGHTFVPROC)load("glLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1070:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLighti = (PFNGLLIGHTIPROC)load("glLighti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1071:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightiv = (PFNGLLIGHTIVPROC)load("glLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1072:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelf = (PFNGLLIGHTMODELFPROC)load("glLightModelf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1073:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelfv = (PFNGLLIGHTMODELFVPROC)load("glLightModelfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1074:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeli = (PFNGLLIGHTMODELIPROC)load("glLightModeli"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1075:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeliv = (PFNGLLIGHTMODELIVPROC)load("glLightModeliv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1076:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineStipple = (PFNGLLINESTIPPLEPROC)load("glLineStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1077:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialf = (PFNGLMATERIALFPROC)load("glMaterialf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1078:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialfv = (PFNGLMATERIALFVPROC)load("glMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1079:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMateriali = (PFNGLMATERIALIPROC)load("glMateriali"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1080:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialiv = (PFNGLMATERIALIVPROC)load("glMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1081:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonStipple = (PFNGLPOLYGONSTIPPLEPROC)load("glPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1082:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShadeModel = (PFNGLSHADEMODELPROC)load("glShadeModel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1083:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvf = (PFNGLTEXENVFPROC)load("glTexEnvf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1084:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvfv = (PFNGLTEXENVFVPROC)load("glTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1085:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvi = (PFNGLTEXENVIPROC)load("glTexEnvi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1086:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnviv = (PFNGLTEXENVIVPROC)load("glTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1087:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGend = (PFNGLTEXGENDPROC)load("glTexGend"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1088:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGendv = (PFNGLTEXGENDVPROC)load("glTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1089:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenf = (PFNGLTEXGENFPROC)load("glTexGenf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1090:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenfv = (PFNGLTEXGENFVPROC)load("glTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1091:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeni = (PFNGLTEXGENIPROC)load("glTexGeni"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1092:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeniv = (PFNGLTEXGENIVPROC)load("glTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1093:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFeedbackBuffer = (PFNGLFEEDBACKBUFFERPROC)load("glFeedbackBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1094:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSelectBuffer = (PFNGLSELECTBUFFERPROC)load("glSelectBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1095:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderMode = (PFNGLRENDERMODEPROC)load("glRenderMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1096:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInitNames = (PFNGLINITNAMESPROC)load("glInitNames"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1097:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadName = (PFNGLLOADNAMEPROC)load("glLoadName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1098:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPassThrough = (PFNGLPASSTHROUGHPROC)load("glPassThrough"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1099:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopName = (PFNGLPOPNAMEPROC)load("glPopName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1100:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushName = (PFNGLPUSHNAMEPROC)load("glPushName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1101:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearAccum = (PFNGLCLEARACCUMPROC)load("glClearAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1102:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearIndex = (PFNGLCLEARINDEXPROC)load("glClearIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1103:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexMask = (PFNGLINDEXMASKPROC)load("glIndexMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1104:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAccum = (PFNGLACCUMPROC)load("glAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1105:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopAttrib = (PFNGLPOPATTRIBPROC)load("glPopAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1106:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushAttrib = (PFNGLPUSHATTRIBPROC)load("glPushAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1107:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1d = (PFNGLMAP1DPROC)load("glMap1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1108:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1f = (PFNGLMAP1FPROC)load("glMap1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1109:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2d = (PFNGLMAP2DPROC)load("glMap2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1110:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2f = (PFNGLMAP2FPROC)load("glMap2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1111:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1d = (PFNGLMAPGRID1DPROC)load("glMapGrid1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1112:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1f = (PFNGLMAPGRID1FPROC)load("glMapGrid1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1113:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2d = (PFNGLMAPGRID2DPROC)load("glMapGrid2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1114:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2f = (PFNGLMAPGRID2FPROC)load("glMapGrid2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1115:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1d = (PFNGLEVALCOORD1DPROC)load("glEvalCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1116:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1dv = (PFNGLEVALCOORD1DVPROC)load("glEvalCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1117:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1f = (PFNGLEVALCOORD1FPROC)load("glEvalCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1118:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1fv = (PFNGLEVALCOORD1FVPROC)load("glEvalCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1119:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2d = (PFNGLEVALCOORD2DPROC)load("glEvalCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1120:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2dv = (PFNGLEVALCOORD2DVPROC)load("glEvalCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1121:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2f = (PFNGLEVALCOORD2FPROC)load("glEvalCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1122:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2fv = (PFNGLEVALCOORD2FVPROC)load("glEvalCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1123:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh1 = (PFNGLEVALMESH1PROC)load("glEvalMesh1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1124:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint1 = (PFNGLEVALPOINT1PROC)load("glEvalPoint1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1125:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh2 = (PFNGLEVALMESH2PROC)load("glEvalMesh2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1126:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint2 = (PFNGLEVALPOINT2PROC)load("glEvalPoint2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1127:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAlphaFunc = (PFNGLALPHAFUNCPROC)load("glAlphaFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1128:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelZoom = (PFNGLPIXELZOOMPROC)load("glPixelZoom"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1129:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferf = (PFNGLPIXELTRANSFERFPROC)load("glPixelTransferf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1130:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferi = (PFNGLPIXELTRANSFERIPROC)load("glPixelTransferi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1131:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapfv = (PFNGLPIXELMAPFVPROC)load("glPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1132:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapuiv = (PFNGLPIXELMAPUIVPROC)load("glPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1133:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapusv = (PFNGLPIXELMAPUSVPROC)load("glPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1134:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyPixels = (PFNGLCOPYPIXELSPROC)load("glCopyPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1135:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawPixels = (PFNGLDRAWPIXELSPROC)load("glDrawPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1136:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetClipPlane = (PFNGLGETCLIPPLANEPROC)load("glGetClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1137:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightfv = (PFNGLGETLIGHTFVPROC)load("glGetLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1138:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightiv = (PFNGLGETLIGHTIVPROC)load("glGetLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1139:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapdv = (PFNGLGETMAPDVPROC)load("glGetMapdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1140:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapfv = (PFNGLGETMAPFVPROC)load("glGetMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1141:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapiv = (PFNGLGETMAPIVPROC)load("glGetMapiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1142:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialfv = (PFNGLGETMATERIALFVPROC)load("glGetMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1143:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialiv = (PFNGLGETMATERIALIVPROC)load("glGetMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1144:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapfv = (PFNGLGETPIXELMAPFVPROC)load("glGetPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1145:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapuiv = (PFNGLGETPIXELMAPUIVPROC)load("glGetPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1146:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapusv = (PFNGLGETPIXELMAPUSVPROC)load("glGetPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1147:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPolygonStipple = (PFNGLGETPOLYGONSTIPPLEPROC)load("glGetPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1148:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnvfv = (PFNGLGETTEXENVFVPROC)load("glGetTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1149:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnviv = (PFNGLGETTEXENVIVPROC)load("glGetTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1150:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGendv = (PFNGLGETTEXGENDVPROC)load("glGetTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1151:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGenfv = (PFNGLGETTEXGENFVPROC)load("glGetTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1152:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGeniv = (PFNGLGETTEXGENIVPROC)load("glGetTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1153:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsList = (PFNGLISLISTPROC)load("glIsList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1154:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrustum = (PFNGLFRUSTUMPROC)load("glFrustum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1155:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadIdentity = (PFNGLLOADIDENTITYPROC)load("glLoadIdentity"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1156:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixf = (PFNGLLOADMATRIXFPROC)load("glLoadMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1157:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixd = (PFNGLLOADMATRIXDPROC)load("glLoadMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1158:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMatrixMode = (PFNGLMATRIXMODEPROC)load("glMatrixMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1159:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixf = (PFNGLMULTMATRIXFPROC)load("glMultMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1160:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixd = (PFNGLMULTMATRIXDPROC)load("glMultMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1161:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glOrtho = (PFNGLORTHOPROC)load("glOrtho"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1162:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopMatrix = (PFNGLPOPMATRIXPROC)load("glPopMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1163:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushMatrix = (PFNGLPUSHMATRIXPROC)load("glPushMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1164:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotated = (PFNGLROTATEDPROC)load("glRotated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1165:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotatef = (PFNGLROTATEFPROC)load("glRotatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1166:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScaled = (PFNGLSCALEDPROC)load("glScaled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1167:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScalef = (PFNGLSCALEFPROC)load("glScalef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1168:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslated = (PFNGLTRANSLATEDPROC)load("glTranslated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1169:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslatef = (PFNGLTRANSLATEFPROC)load("glTranslatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1173:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1174:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1175:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1176:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1177:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1178:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1179:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage1D = (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1180:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1181:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1182:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1183:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1184:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1185:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1186:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1187:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glArrayElement = (PFNGLARRAYELEMENTPROC)load("glArrayElement"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1188:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorPointer = (PFNGLCOLORPOINTERPROC)load("glColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1189:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableClientState = (PFNGLDISABLECLIENTSTATEPROC)load("glDisableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1190:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagPointer = (PFNGLEDGEFLAGPOINTERPROC)load("glEdgeFlagPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1191:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableClientState = (PFNGLENABLECLIENTSTATEPROC)load("glEnableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1192:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexPointer = (PFNGLINDEXPOINTERPROC)load("glIndexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1193:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInterleavedArrays = (PFNGLINTERLEAVEDARRAYSPROC)load("glInterleavedArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1194:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormalPointer = (PFNGLNORMALPOINTERPROC)load("glNormalPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1195:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoordPointer = (PFNGLTEXCOORDPOINTERPROC)load("glTexCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1196:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexPointer = (PFNGLVERTEXPOINTERPROC)load("glVertexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1197:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAreTexturesResident = (PFNGLARETEXTURESRESIDENTPROC)load("glAreTexturesResident"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1198:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrioritizeTextures = (PFNGLPRIORITIZETEXTURESPROC)load("glPrioritizeTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1199:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexub = (PFNGLINDEXUBPROC)load("glIndexub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1200:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexubv = (PFNGLINDEXUBVPROC)load("glIndexubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1201:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopClientAttrib = (PFNGLPOPCLIENTATTRIBPROC)load("glPopClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1202:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushClientAttrib = (PFNGLPUSHCLIENTATTRIBPROC)load("glPushClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1206:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1207:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1208:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1209:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_3’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1213:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1214:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1215:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1216:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1217:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage1D = (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1218:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1219:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1220:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage1D = (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1221:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetCompressedTexImage = (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1222:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientActiveTexture = (PFNGLCLIENTACTIVETEXTUREPROC)load("glClientActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1223:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1d = (PFNGLMULTITEXCOORD1DPROC)load("glMultiTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1224:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1dv = (PFNGLMULTITEXCOORD1DVPROC)load("glMultiTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1225:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1f = (PFNGLMULTITEXCOORD1FPROC)load("glMultiTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1226:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1fv = (PFNGLMULTITEXCOORD1FVPROC)load("glMultiTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1227:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1i = (PFNGLMULTITEXCOORD1IPROC)load("glMultiTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1228:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1iv = (PFNGLMULTITEXCOORD1IVPROC)load("glMultiTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1229:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1s = (PFNGLMULTITEXCOORD1SPROC)load("glMultiTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1230:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1sv = (PFNGLMULTITEXCOORD1SVPROC)load("glMultiTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1231:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2d = (PFNGLMULTITEXCOORD2DPROC)load("glMultiTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1232:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2dv = (PFNGLMULTITEXCOORD2DVPROC)load("glMultiTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1233:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2f = (PFNGLMULTITEXCOORD2FPROC)load("glMultiTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1234:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2fv = (PFNGLMULTITEXCOORD2FVPROC)load("glMultiTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1235:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2i = (PFNGLMULTITEXCOORD2IPROC)load("glMultiTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1236:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2iv = (PFNGLMULTITEXCOORD2IVPROC)load("glMultiTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1237:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2s = (PFNGLMULTITEXCOORD2SPROC)load("glMultiTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1238:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2sv = (PFNGLMULTITEXCOORD2SVPROC)load("glMultiTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1239:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3d = (PFNGLMULTITEXCOORD3DPROC)load("glMultiTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1240:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3dv = (PFNGLMULTITEXCOORD3DVPROC)load("glMultiTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1241:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3f = (PFNGLMULTITEXCOORD3FPROC)load("glMultiTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1242:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3fv = (PFNGLMULTITEXCOORD3FVPROC)load("glMultiTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1243:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3i = (PFNGLMULTITEXCOORD3IPROC)load("glMultiTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1244:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3iv = (PFNGLMULTITEXCOORD3IVPROC)load("glMultiTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1245:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3s = (PFNGLMULTITEXCOORD3SPROC)load("glMultiTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1246:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3sv = (PFNGLMULTITEXCOORD3SVPROC)load("glMultiTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1247:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4d = (PFNGLMULTITEXCOORD4DPROC)load("glMultiTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1248:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4dv = (PFNGLMULTITEXCOORD4DVPROC)load("glMultiTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1249:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4f = (PFNGLMULTITEXCOORD4FPROC)load("glMultiTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1250:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4fv = (PFNGLMULTITEXCOORD4FVPROC)load("glMultiTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1251:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4i = (PFNGLMULTITEXCOORD4IPROC)load("glMultiTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1252:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4iv = (PFNGLMULTITEXCOORD4IVPROC)load("glMultiTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1253:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4s = (PFNGLMULTITEXCOORD4SPROC)load("glMultiTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1254:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4sv = (PFNGLMULTITEXCOORD4SVPROC)load("glMultiTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1255:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixf = (PFNGLLOADTRANSPOSEMATRIXFPROC)load("glLoadTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1256:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixd = (PFNGLLOADTRANSPOSEMATRIXDPROC)load("glLoadTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1257:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixf = (PFNGLMULTTRANSPOSEMATRIXFPROC)load("glMultTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1258:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixd = (PFNGLMULTTRANSPOSEMATRIXDPROC)load("glMultTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_4’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1262:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1263:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawArrays = (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1264:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElements = (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1265:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterf = (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1266:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterfv = (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1267:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteri = (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1268:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteriv = (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1269:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordf = (PFNGLFOGCOORDFPROC)load("glFogCoordf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1270:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordfv = (PFNGLFOGCOORDFVPROC)load("glFogCoordfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1271:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordd = (PFNGLFOGCOORDDPROC)load("glFogCoordd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1272:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoorddv = (PFNGLFOGCOORDDVPROC)load("glFogCoorddv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1273:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordPointer = (PFNGLFOGCOORDPOINTERPROC)load("glFogCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1274:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3b = (PFNGLSECONDARYCOLOR3BPROC)load("glSecondaryColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1275:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3bv = (PFNGLSECONDARYCOLOR3BVPROC)load("glSecondaryColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1276:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3d = (PFNGLSECONDARYCOLOR3DPROC)load("glSecondaryColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1277:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3dv = (PFNGLSECONDARYCOLOR3DVPROC)load("glSecondaryColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1278:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3f = (PFNGLSECONDARYCOLOR3FPROC)load("glSecondaryColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1279:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3fv = (PFNGLSECONDARYCOLOR3FVPROC)load("glSecondaryColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1280:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3i = (PFNGLSECONDARYCOLOR3IPROC)load("glSecondaryColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1281:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3iv = (PFNGLSECONDARYCOLOR3IVPROC)load("glSecondaryColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1282:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3s = (PFNGLSECONDARYCOLOR3SPROC)load("glSecondaryColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1283:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3sv = (PFNGLSECONDARYCOLOR3SVPROC)load("glSecondaryColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1284:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ub = (PFNGLSECONDARYCOLOR3UBPROC)load("glSecondaryColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1285:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ubv = (PFNGLSECONDARYCOLOR3UBVPROC)load("glSecondaryColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1286:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ui = (PFNGLSECONDARYCOLOR3UIPROC)load("glSecondaryColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1287:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3uiv = (PFNGLSECONDARYCOLOR3UIVPROC)load("glSecondaryColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1288:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3us = (PFNGLSECONDARYCOLOR3USPROC)load("glSecondaryColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1289:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3usv = (PFNGLSECONDARYCOLOR3USVPROC)load("glSecondaryColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1290:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColorPointer = (PFNGLSECONDARYCOLORPOINTERPROC)load("glSecondaryColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1291:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2d = (PFNGLWINDOWPOS2DPROC)load("glWindowPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1292:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2dv = (PFNGLWINDOWPOS2DVPROC)load("glWindowPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1293:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2f = (PFNGLWINDOWPOS2FPROC)load("glWindowPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1294:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2fv = (PFNGLWINDOWPOS2FVPROC)load("glWindowPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1295:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2i = (PFNGLWINDOWPOS2IPROC)load("glWindowPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1296:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2iv = (PFNGLWINDOWPOS2IVPROC)load("glWindowPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1297:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2s = (PFNGLWINDOWPOS2SPROC)load("glWindowPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1298:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2sv = (PFNGLWINDOWPOS2SVPROC)load("glWindowPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1299:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3d = (PFNGLWINDOWPOS3DPROC)load("glWindowPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1300:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3dv = (PFNGLWINDOWPOS3DVPROC)load("glWindowPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1301:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3f = (PFNGLWINDOWPOS3FPROC)load("glWindowPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1302:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3fv = (PFNGLWINDOWPOS3FVPROC)load("glWindowPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1303:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3i = (PFNGLWINDOWPOS3IPROC)load("glWindowPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1304:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3iv = (PFNGLWINDOWPOS3IVPROC)load("glWindowPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1305:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3s = (PFNGLWINDOWPOS3SPROC)load("glWindowPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1306:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3sv = (PFNGLWINDOWPOS3SVPROC)load("glWindowPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1307:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1308:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_5’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1312:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1313:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1314:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1315:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1316:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1317:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1318:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectiv = (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1319:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1320:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1321:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1322:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1323:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1324:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1325:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1326:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferSubData = (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1327:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1328:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1329:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1330:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1334:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1335:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1336:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1337:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1338:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1339:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1340:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1341:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1342:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1343:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1344:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1345:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1346:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1347:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1348:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1349:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1350:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1351:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1352:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1353:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1354:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1355:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1356:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1357:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1358:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1359:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1360:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1361:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribdv = (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1362:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1363:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1364:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1365:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1366:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1367:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1368:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1369:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1370:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1371:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1372:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1373:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1374:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1375:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1376:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1377:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1378:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1379:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1380:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1381:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1382:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1383:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1384:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1385:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1386:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1387:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1388:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1389:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1390:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1391:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1dv = (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1392:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1393:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1394:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1395:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1sv = (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1396:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1397:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2dv = (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1398:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1399:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1400:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1401:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2sv = (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1402:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1403:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3dv = (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1404:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1405:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1406:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1407:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3sv = (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1408:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nbv = (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1409:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Niv = (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1410:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nsv = (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1411:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nub = (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1412:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nubv = (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1413:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nuiv = (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1414:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nusv = (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1415:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4bv = (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1416:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1417:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4dv = (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1418:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1419:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1420:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4iv = (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1421:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1422:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4sv = (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1423:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4ubv = (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1424:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4uiv = (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1425:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4usv = (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1426:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1430:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1431:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1432:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1433:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1434:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1435:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1439:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1440:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1441:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1442:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1443:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1444:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1445:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1446:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1447:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1448:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1449:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1450:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1451:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1452:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginConditionalRender = (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1453:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndConditionalRender = (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1454:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1455:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1456:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1457:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1i = (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1458:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2i = (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1459:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3i = (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1460:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1461:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1ui = (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1462:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2ui = (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1463:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3ui = (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1464:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1465:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1iv = (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1466:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2iv = (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1467:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3iv = (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1468:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1469:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1uiv = (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1470:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2uiv = (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1471:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3uiv = (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1472:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1473:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4bv = (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1474:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4sv = (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1475:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ubv = (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1476:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4usv = (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1477:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1478:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFragDataLocation = (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1479:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1480:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1481:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1482:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1483:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1484:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1485:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1486:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1487:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1488:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1489:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1490:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1491:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1492:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1493:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1494:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1495:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1496:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1497:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1498:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1499:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1500:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1501:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1502:38: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1503:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1504:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1505:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1506:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1507:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1508:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture1D = (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1509:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1510:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture3D = (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1511:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1512:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1513:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1514:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1515:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1516:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1517:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1518:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1519:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1520:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1521:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1522:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1526:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1527:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1528:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1529:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrimitiveRestartIndex = (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1530:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1531:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1532:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1533:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformName = (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1534:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1535:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1536:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1537:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1538:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1539:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1540:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1544:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1545:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1546:43: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1547:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElementsBaseVertex = (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load("glMultiDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1548:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1549:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1550:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1551:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1552:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1553:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1554:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1555:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1556:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1557:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1558:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1559:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2DMultisample = (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1560:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3DMultisample = (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1561:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1562:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_APPLE_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1566:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArrayAPPLE = (PFNGLBINDVERTEXARRAYAPPLEPROC)load("glBindVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1567:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArraysAPPLE = (PFNGLDELETEVERTEXARRAYSAPPLEPROC)load("glDeleteVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1568:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArraysAPPLE = (PFNGLGENVERTEXARRAYSAPPLEPROC)load("glGenVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1569:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArrayAPPLE = (PFNGLISVERTEXARRAYAPPLEPROC)load("glIsVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_multisample’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1573:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverageARB = (PFNGLSAMPLECOVERAGEARBPROC)load("glSampleCoverageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_robustness’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1577:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetGraphicsResetStatusARB = (PFNGLGETGRAPHICSRESETSTATUSARBPROC)load("glGetGraphicsResetStatusARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1578:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnTexImageARB = (PFNGLGETNTEXIMAGEARBPROC)load("glGetnTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1579:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadnPixelsARB = (PFNGLREADNPIXELSARBPROC)load("glReadnPixelsARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1580:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnCompressedTexImageARB = (PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC)load("glGetnCompressedTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1581:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformfvARB = (PFNGLGETNUNIFORMFVARBPROC)load("glGetnUniformfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1582:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformivARB = (PFNGLGETNUNIFORMIVARBPROC)load("glGetnUniformivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1583:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformuivARB = (PFNGLGETNUNIFORMUIVARBPROC)load("glGetnUniformuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1584:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformdvARB = (PFNGLGETNUNIFORMDVARBPROC)load("glGetnUniformdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1585:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapdvARB = (PFNGLGETNMAPDVARBPROC)load("glGetnMapdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1586:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapfvARB = (PFNGLGETNMAPFVARBPROC)load("glGetnMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1587:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapivARB = (PFNGLGETNMAPIVARBPROC)load("glGetnMapivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1588:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapfvARB = (PFNGLGETNPIXELMAPFVARBPROC)load("glGetnPixelMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1589:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapuivARB = (PFNGLGETNPIXELMAPUIVARBPROC)load("glGetnPixelMapuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1590:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapusvARB = (PFNGLGETNPIXELMAPUSVARBPROC)load("glGetnPixelMapusvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1591:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPolygonStippleARB = (PFNGLGETNPOLYGONSTIPPLEARBPROC)load("glGetnPolygonStippleARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1592:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnColorTableARB = (PFNGLGETNCOLORTABLEARBPROC)load("glGetnColorTableARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1593:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnConvolutionFilterARB = (PFNGLGETNCONVOLUTIONFILTERARBPROC)load("glGetnConvolutionFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1594:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnSeparableFilterARB = (PFNGLGETNSEPARABLEFILTERARBPROC)load("glGetnSeparableFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1595:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnHistogramARB = (PFNGLGETNHISTOGRAMARBPROC)load("glGetnHistogramARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1596:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMinmaxARB = (PFNGLGETNMINMAXARBPROC)load("glGetnMinmaxARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1600:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1601:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1602:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1603:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_KHR_debug’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1607:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControl = (PFNGLDEBUGMESSAGECONTROLPROC)load("glDebugMessageControl"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1608:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsert = (PFNGLDEBUGMESSAGEINSERTPROC)load("glDebugMessageInsert"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1609:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallback = (PFNGLDEBUGMESSAGECALLBACKPROC)load("glDebugMessageCallback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1610:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLog = (PFNGLGETDEBUGMESSAGELOGPROC)load("glGetDebugMessageLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1611:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroup = (PFNGLPUSHDEBUGGROUPPROC)load("glPushDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1612:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroup = (PFNGLPOPDEBUGGROUPPROC)load("glPopDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1613:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabel = (PFNGLOBJECTLABELPROC)load("glObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1614:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabel = (PFNGLGETOBJECTLABELPROC)load("glGetObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1615:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabel = (PFNGLOBJECTPTRLABELPROC)load("glObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1616:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabel = (PFNGLGETOBJECTPTRLABELPROC)load("glGetObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1617:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1618:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControlKHR = (PFNGLDEBUGMESSAGECONTROLKHRPROC)load("glDebugMessageControlKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1619:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsertKHR = (PFNGLDEBUGMESSAGEINSERTKHRPROC)load("glDebugMessageInsertKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1620:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallbackKHR = (PFNGLDEBUGMESSAGECALLBACKKHRPROC)load("glDebugMessageCallbackKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1621:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLogKHR = (PFNGLGETDEBUGMESSAGELOGKHRPROC)load("glGetDebugMessageLogKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1622:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroupKHR = (PFNGLPUSHDEBUGGROUPKHRPROC)load("glPushDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1623:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroupKHR = (PFNGLPOPDEBUGGROUPKHRPROC)load("glPopDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1624:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabelKHR = (PFNGLOBJECTLABELKHRPROC)load("glObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1625:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabelKHR = (PFNGLGETOBJECTLABELKHRPROC)load("glGetObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1626:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabelKHR = (PFNGLOBJECTPTRLABELKHRPROC)load("glObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1627:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabelKHR = (PFNGLGETOBJECTPTRLABELKHRPROC)load("glGetObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1628:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointervKHR = (PFNGLGETPOINTERVKHRPROC)load("glGetPointervKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘gladLoadGLLoader’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1696:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ [ 90%] Building C object tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/realsense-viewer -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/realsense-viewer.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/tinyfiledialogs/tinyfiledialogs.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/tinyfiledialogs/tinyfiledialogs.c:87: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 90%] Linking CXX executable realsense-viewer-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer && /usr/bin/cmake -E cmake_link_script CMakeFiles/realsense-viewer.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/realsense-viewer.dir/__/__/common/model-views.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/notifications.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/viewer.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/ux-window.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/ux-alignment.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/opengl3.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/rs-config.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/os.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/fw-update-helper.cpp.o CMakeFiles/realsense-viewer.dir/__/__/common/on-chip-calib.cpp.o CMakeFiles/realsense-viewer.dir/realsense-viewer.cpp.o CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui.cpp.o CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui_draw.cpp.o CMakeFiles/realsense-viewer.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o CMakeFiles/realsense-viewer.dir/__/__/third-party/glad/glad.c.o CMakeFiles/realsense-viewer.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o -o realsense-viewer-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl:/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../third-party/glfw/src/libglfw3.a -lGL -lGLU ../../src/gl/librealsense2-framos-gl.so.2.29.8 ../../common/fw/libuvc_fw.a -lrt -lm -ldl -lX11 ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 90%] Built target realsense-viewer make -f tools/depth-quality/CMakeFiles/rs-depth-quality.dir/build.make tools/depth-quality/CMakeFiles/rs-depth-quality.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality/CMakeFiles/rs-depth-quality.dir/DependInfo.cmake --color= Scanning dependencies of target rs-depth-quality make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/depth-quality/CMakeFiles/rs-depth-quality.dir/build.make tools/depth-quality/CMakeFiles/rs-depth-quality.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 90%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/model-views.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/model-views.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/model-views.cpp [ 90%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/notifications.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/notifications.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/notifications.cpp [ 91%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/viewer.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/viewer.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/viewer.cpp [ 91%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/ux-window.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/ux-window.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/ux-window.cpp [ 91%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/ux-alignment.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/ux-alignment.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/ux-alignment.cpp [ 92%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/opengl3.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/opengl3.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/opengl3.cpp [ 92%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/rs-config.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/rs-config.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/rs-config.cpp [ 92%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/os.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/os.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/os.cpp [ 93%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/fw-update-helper.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/fw-update-helper.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/fw-update-helper.cpp [ 93%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/common/on-chip-calib.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/common/on-chip-calib.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/on-chip-calib.cpp [ 93%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/rs-depth-quality.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/rs-depth-quality.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality.cpp [ 94%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/depth-quality-model.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/depth-quality-model.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/depth-quality-model.cpp [ 94%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui.cpp [ 94%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui_draw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui_draw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_draw.cpp [ 95%] Building CXX object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_impl_glfw.cpp [ 95%] Building C object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/third-party/glad/glad.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-depth-quality.dir/__/__/third-party/glad/glad.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:26: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:864:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:865:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:866:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glHint = (PFNGLHINTPROC)load("glHint"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:867:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:868:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:869:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:870:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:871:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:872:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:873:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:874:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:875:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:876:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:877:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:878:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClear = (PFNGLCLEARPROC)load("glClear"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:879:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:880:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:881:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:882:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:883:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:884:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:885:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:886:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:887:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:888:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:889:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:890:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:891:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:892:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:893:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:894:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:895:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:896:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:897:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:898:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:899:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:900:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:901:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:902:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:903:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:904:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:905:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:906:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:907:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:908:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:909:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:910:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:911:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:912:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNewList = (PFNGLNEWLISTPROC)load("glNewList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:913:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndList = (PFNGLENDLISTPROC)load("glEndList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:914:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallList = (PFNGLCALLLISTPROC)load("glCallList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:915:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallLists = (PFNGLCALLLISTSPROC)load("glCallLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:916:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteLists = (PFNGLDELETELISTSPROC)load("glDeleteLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:917:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenLists = (PFNGLGENLISTSPROC)load("glGenLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:918:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glListBase = (PFNGLLISTBASEPROC)load("glListBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:919:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBegin = (PFNGLBEGINPROC)load("glBegin"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:920:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBitmap = (PFNGLBITMAPPROC)load("glBitmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:921:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3b = (PFNGLCOLOR3BPROC)load("glColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:922:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3bv = (PFNGLCOLOR3BVPROC)load("glColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:923:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3d = (PFNGLCOLOR3DPROC)load("glColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:924:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3dv = (PFNGLCOLOR3DVPROC)load("glColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:925:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3f = (PFNGLCOLOR3FPROC)load("glColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:926:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3fv = (PFNGLCOLOR3FVPROC)load("glColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:927:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3i = (PFNGLCOLOR3IPROC)load("glColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:928:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3iv = (PFNGLCOLOR3IVPROC)load("glColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:929:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3s = (PFNGLCOLOR3SPROC)load("glColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:930:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3sv = (PFNGLCOLOR3SVPROC)load("glColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:931:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ub = (PFNGLCOLOR3UBPROC)load("glColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:932:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ubv = (PFNGLCOLOR3UBVPROC)load("glColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:933:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ui = (PFNGLCOLOR3UIPROC)load("glColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:934:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3uiv = (PFNGLCOLOR3UIVPROC)load("glColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:935:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3us = (PFNGLCOLOR3USPROC)load("glColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:936:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3usv = (PFNGLCOLOR3USVPROC)load("glColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:937:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4b = (PFNGLCOLOR4BPROC)load("glColor4b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:938:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4bv = (PFNGLCOLOR4BVPROC)load("glColor4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:939:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4d = (PFNGLCOLOR4DPROC)load("glColor4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:940:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4dv = (PFNGLCOLOR4DVPROC)load("glColor4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:941:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4f = (PFNGLCOLOR4FPROC)load("glColor4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:942:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4fv = (PFNGLCOLOR4FVPROC)load("glColor4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:943:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4i = (PFNGLCOLOR4IPROC)load("glColor4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:944:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4iv = (PFNGLCOLOR4IVPROC)load("glColor4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:945:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4s = (PFNGLCOLOR4SPROC)load("glColor4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:946:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4sv = (PFNGLCOLOR4SVPROC)load("glColor4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:947:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ub = (PFNGLCOLOR4UBPROC)load("glColor4ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:948:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ubv = (PFNGLCOLOR4UBVPROC)load("glColor4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:949:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ui = (PFNGLCOLOR4UIPROC)load("glColor4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:950:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4uiv = (PFNGLCOLOR4UIVPROC)load("glColor4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:951:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4us = (PFNGLCOLOR4USPROC)load("glColor4us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:952:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4usv = (PFNGLCOLOR4USVPROC)load("glColor4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:953:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlag = (PFNGLEDGEFLAGPROC)load("glEdgeFlag"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:954:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagv = (PFNGLEDGEFLAGVPROC)load("glEdgeFlagv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:955:15: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnd = (PFNGLENDPROC)load("glEnd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:956:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexd = (PFNGLINDEXDPROC)load("glIndexd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:957:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexdv = (PFNGLINDEXDVPROC)load("glIndexdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:958:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexf = (PFNGLINDEXFPROC)load("glIndexf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:959:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexfv = (PFNGLINDEXFVPROC)load("glIndexfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:960:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexi = (PFNGLINDEXIPROC)load("glIndexi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:961:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexiv = (PFNGLINDEXIVPROC)load("glIndexiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:962:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexs = (PFNGLINDEXSPROC)load("glIndexs"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:963:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexsv = (PFNGLINDEXSVPROC)load("glIndexsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:964:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3b = (PFNGLNORMAL3BPROC)load("glNormal3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:965:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3bv = (PFNGLNORMAL3BVPROC)load("glNormal3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:966:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3d = (PFNGLNORMAL3DPROC)load("glNormal3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:967:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3dv = (PFNGLNORMAL3DVPROC)load("glNormal3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:968:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3f = (PFNGLNORMAL3FPROC)load("glNormal3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:969:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3fv = (PFNGLNORMAL3FVPROC)load("glNormal3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:970:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3i = (PFNGLNORMAL3IPROC)load("glNormal3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:971:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3iv = (PFNGLNORMAL3IVPROC)load("glNormal3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:972:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3s = (PFNGLNORMAL3SPROC)load("glNormal3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:973:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3sv = (PFNGLNORMAL3SVPROC)load("glNormal3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:974:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2d = (PFNGLRASTERPOS2DPROC)load("glRasterPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:975:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2dv = (PFNGLRASTERPOS2DVPROC)load("glRasterPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:976:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2f = (PFNGLRASTERPOS2FPROC)load("glRasterPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:977:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2fv = (PFNGLRASTERPOS2FVPROC)load("glRasterPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:978:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2i = (PFNGLRASTERPOS2IPROC)load("glRasterPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:979:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2iv = (PFNGLRASTERPOS2IVPROC)load("glRasterPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:980:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2s = (PFNGLRASTERPOS2SPROC)load("glRasterPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:981:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2sv = (PFNGLRASTERPOS2SVPROC)load("glRasterPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:982:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3d = (PFNGLRASTERPOS3DPROC)load("glRasterPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:983:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3dv = (PFNGLRASTERPOS3DVPROC)load("glRasterPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:984:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3f = (PFNGLRASTERPOS3FPROC)load("glRasterPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:985:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3fv = (PFNGLRASTERPOS3FVPROC)load("glRasterPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:986:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3i = (PFNGLRASTERPOS3IPROC)load("glRasterPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:987:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3iv = (PFNGLRASTERPOS3IVPROC)load("glRasterPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:988:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3s = (PFNGLRASTERPOS3SPROC)load("glRasterPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:989:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3sv = (PFNGLRASTERPOS3SVPROC)load("glRasterPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:990:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4d = (PFNGLRASTERPOS4DPROC)load("glRasterPos4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:991:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4dv = (PFNGLRASTERPOS4DVPROC)load("glRasterPos4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:992:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4f = (PFNGLRASTERPOS4FPROC)load("glRasterPos4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:993:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4fv = (PFNGLRASTERPOS4FVPROC)load("glRasterPos4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:994:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4i = (PFNGLRASTERPOS4IPROC)load("glRasterPos4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:995:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4iv = (PFNGLRASTERPOS4IVPROC)load("glRasterPos4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:996:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4s = (PFNGLRASTERPOS4SPROC)load("glRasterPos4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:997:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4sv = (PFNGLRASTERPOS4SVPROC)load("glRasterPos4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:998:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectd = (PFNGLRECTDPROC)load("glRectd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:999:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectdv = (PFNGLRECTDVPROC)load("glRectdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1000:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectf = (PFNGLRECTFPROC)load("glRectf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1001:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectfv = (PFNGLRECTFVPROC)load("glRectfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1002:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRecti = (PFNGLRECTIPROC)load("glRecti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1003:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectiv = (PFNGLRECTIVPROC)load("glRectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1004:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRects = (PFNGLRECTSPROC)load("glRects"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1005:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectsv = (PFNGLRECTSVPROC)load("glRectsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1006:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1d = (PFNGLTEXCOORD1DPROC)load("glTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1007:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1dv = (PFNGLTEXCOORD1DVPROC)load("glTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1008:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1f = (PFNGLTEXCOORD1FPROC)load("glTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1009:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1fv = (PFNGLTEXCOORD1FVPROC)load("glTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1010:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1i = (PFNGLTEXCOORD1IPROC)load("glTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1011:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1iv = (PFNGLTEXCOORD1IVPROC)load("glTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1012:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1s = (PFNGLTEXCOORD1SPROC)load("glTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1013:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1sv = (PFNGLTEXCOORD1SVPROC)load("glTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1014:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2d = (PFNGLTEXCOORD2DPROC)load("glTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1015:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2dv = (PFNGLTEXCOORD2DVPROC)load("glTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1016:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2f = (PFNGLTEXCOORD2FPROC)load("glTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1017:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2fv = (PFNGLTEXCOORD2FVPROC)load("glTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1018:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2i = (PFNGLTEXCOORD2IPROC)load("glTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1019:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2iv = (PFNGLTEXCOORD2IVPROC)load("glTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1020:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2s = (PFNGLTEXCOORD2SPROC)load("glTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1021:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2sv = (PFNGLTEXCOORD2SVPROC)load("glTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1022:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3d = (PFNGLTEXCOORD3DPROC)load("glTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1023:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3dv = (PFNGLTEXCOORD3DVPROC)load("glTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1024:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3f = (PFNGLTEXCOORD3FPROC)load("glTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1025:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3fv = (PFNGLTEXCOORD3FVPROC)load("glTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1026:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3i = (PFNGLTEXCOORD3IPROC)load("glTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1027:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3iv = (PFNGLTEXCOORD3IVPROC)load("glTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1028:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3s = (PFNGLTEXCOORD3SPROC)load("glTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1029:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3sv = (PFNGLTEXCOORD3SVPROC)load("glTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1030:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4d = (PFNGLTEXCOORD4DPROC)load("glTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1031:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4dv = (PFNGLTEXCOORD4DVPROC)load("glTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1032:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4f = (PFNGLTEXCOORD4FPROC)load("glTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1033:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4fv = (PFNGLTEXCOORD4FVPROC)load("glTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1034:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4i = (PFNGLTEXCOORD4IPROC)load("glTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1035:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4iv = (PFNGLTEXCOORD4IVPROC)load("glTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1036:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4s = (PFNGLTEXCOORD4SPROC)load("glTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1037:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4sv = (PFNGLTEXCOORD4SVPROC)load("glTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1038:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2d = (PFNGLVERTEX2DPROC)load("glVertex2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1039:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2dv = (PFNGLVERTEX2DVPROC)load("glVertex2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1040:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2f = (PFNGLVERTEX2FPROC)load("glVertex2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1041:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2fv = (PFNGLVERTEX2FVPROC)load("glVertex2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1042:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2i = (PFNGLVERTEX2IPROC)load("glVertex2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1043:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2iv = (PFNGLVERTEX2IVPROC)load("glVertex2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1044:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2s = (PFNGLVERTEX2SPROC)load("glVertex2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1045:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2sv = (PFNGLVERTEX2SVPROC)load("glVertex2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1046:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3d = (PFNGLVERTEX3DPROC)load("glVertex3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1047:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3dv = (PFNGLVERTEX3DVPROC)load("glVertex3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1048:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3f = (PFNGLVERTEX3FPROC)load("glVertex3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1049:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3fv = (PFNGLVERTEX3FVPROC)load("glVertex3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1050:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3i = (PFNGLVERTEX3IPROC)load("glVertex3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1051:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3iv = (PFNGLVERTEX3IVPROC)load("glVertex3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1052:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3s = (PFNGLVERTEX3SPROC)load("glVertex3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1053:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3sv = (PFNGLVERTEX3SVPROC)load("glVertex3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1054:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4d = (PFNGLVERTEX4DPROC)load("glVertex4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1055:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4dv = (PFNGLVERTEX4DVPROC)load("glVertex4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1056:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4f = (PFNGLVERTEX4FPROC)load("glVertex4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1057:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4fv = (PFNGLVERTEX4FVPROC)load("glVertex4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1058:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4i = (PFNGLVERTEX4IPROC)load("glVertex4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1059:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4iv = (PFNGLVERTEX4IVPROC)load("glVertex4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1060:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4s = (PFNGLVERTEX4SPROC)load("glVertex4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1061:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4sv = (PFNGLVERTEX4SVPROC)load("glVertex4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1062:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClipPlane = (PFNGLCLIPPLANEPROC)load("glClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1063:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaterial = (PFNGLCOLORMATERIALPROC)load("glColorMaterial"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1064:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogf = (PFNGLFOGFPROC)load("glFogf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1065:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogfv = (PFNGLFOGFVPROC)load("glFogfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1066:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogi = (PFNGLFOGIPROC)load("glFogi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1067:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogiv = (PFNGLFOGIVPROC)load("glFogiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1068:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightf = (PFNGLLIGHTFPROC)load("glLightf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1069:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightfv = (PFNGLLIGHTFVPROC)load("glLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1070:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLighti = (PFNGLLIGHTIPROC)load("glLighti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1071:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightiv = (PFNGLLIGHTIVPROC)load("glLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1072:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelf = (PFNGLLIGHTMODELFPROC)load("glLightModelf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1073:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelfv = (PFNGLLIGHTMODELFVPROC)load("glLightModelfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1074:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeli = (PFNGLLIGHTMODELIPROC)load("glLightModeli"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1075:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeliv = (PFNGLLIGHTMODELIVPROC)load("glLightModeliv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1076:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineStipple = (PFNGLLINESTIPPLEPROC)load("glLineStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1077:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialf = (PFNGLMATERIALFPROC)load("glMaterialf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1078:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialfv = (PFNGLMATERIALFVPROC)load("glMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1079:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMateriali = (PFNGLMATERIALIPROC)load("glMateriali"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1080:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialiv = (PFNGLMATERIALIVPROC)load("glMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1081:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonStipple = (PFNGLPOLYGONSTIPPLEPROC)load("glPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1082:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShadeModel = (PFNGLSHADEMODELPROC)load("glShadeModel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1083:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvf = (PFNGLTEXENVFPROC)load("glTexEnvf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1084:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvfv = (PFNGLTEXENVFVPROC)load("glTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1085:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvi = (PFNGLTEXENVIPROC)load("glTexEnvi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1086:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnviv = (PFNGLTEXENVIVPROC)load("glTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1087:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGend = (PFNGLTEXGENDPROC)load("glTexGend"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1088:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGendv = (PFNGLTEXGENDVPROC)load("glTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1089:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenf = (PFNGLTEXGENFPROC)load("glTexGenf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1090:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenfv = (PFNGLTEXGENFVPROC)load("glTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1091:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeni = (PFNGLTEXGENIPROC)load("glTexGeni"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1092:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeniv = (PFNGLTEXGENIVPROC)load("glTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1093:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFeedbackBuffer = (PFNGLFEEDBACKBUFFERPROC)load("glFeedbackBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1094:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSelectBuffer = (PFNGLSELECTBUFFERPROC)load("glSelectBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1095:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderMode = (PFNGLRENDERMODEPROC)load("glRenderMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1096:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInitNames = (PFNGLINITNAMESPROC)load("glInitNames"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1097:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadName = (PFNGLLOADNAMEPROC)load("glLoadName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1098:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPassThrough = (PFNGLPASSTHROUGHPROC)load("glPassThrough"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1099:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopName = (PFNGLPOPNAMEPROC)load("glPopName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1100:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushName = (PFNGLPUSHNAMEPROC)load("glPushName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1101:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearAccum = (PFNGLCLEARACCUMPROC)load("glClearAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1102:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearIndex = (PFNGLCLEARINDEXPROC)load("glClearIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1103:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexMask = (PFNGLINDEXMASKPROC)load("glIndexMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1104:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAccum = (PFNGLACCUMPROC)load("glAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1105:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopAttrib = (PFNGLPOPATTRIBPROC)load("glPopAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1106:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushAttrib = (PFNGLPUSHATTRIBPROC)load("glPushAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1107:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1d = (PFNGLMAP1DPROC)load("glMap1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1108:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1f = (PFNGLMAP1FPROC)load("glMap1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1109:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2d = (PFNGLMAP2DPROC)load("glMap2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1110:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2f = (PFNGLMAP2FPROC)load("glMap2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1111:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1d = (PFNGLMAPGRID1DPROC)load("glMapGrid1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1112:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1f = (PFNGLMAPGRID1FPROC)load("glMapGrid1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1113:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2d = (PFNGLMAPGRID2DPROC)load("glMapGrid2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1114:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2f = (PFNGLMAPGRID2FPROC)load("glMapGrid2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1115:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1d = (PFNGLEVALCOORD1DPROC)load("glEvalCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1116:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1dv = (PFNGLEVALCOORD1DVPROC)load("glEvalCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1117:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1f = (PFNGLEVALCOORD1FPROC)load("glEvalCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1118:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1fv = (PFNGLEVALCOORD1FVPROC)load("glEvalCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1119:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2d = (PFNGLEVALCOORD2DPROC)load("glEvalCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1120:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2dv = (PFNGLEVALCOORD2DVPROC)load("glEvalCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1121:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2f = (PFNGLEVALCOORD2FPROC)load("glEvalCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1122:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2fv = (PFNGLEVALCOORD2FVPROC)load("glEvalCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1123:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh1 = (PFNGLEVALMESH1PROC)load("glEvalMesh1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1124:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint1 = (PFNGLEVALPOINT1PROC)load("glEvalPoint1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1125:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh2 = (PFNGLEVALMESH2PROC)load("glEvalMesh2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1126:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint2 = (PFNGLEVALPOINT2PROC)load("glEvalPoint2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1127:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAlphaFunc = (PFNGLALPHAFUNCPROC)load("glAlphaFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1128:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelZoom = (PFNGLPIXELZOOMPROC)load("glPixelZoom"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1129:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferf = (PFNGLPIXELTRANSFERFPROC)load("glPixelTransferf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1130:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferi = (PFNGLPIXELTRANSFERIPROC)load("glPixelTransferi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1131:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapfv = (PFNGLPIXELMAPFVPROC)load("glPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1132:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapuiv = (PFNGLPIXELMAPUIVPROC)load("glPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1133:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapusv = (PFNGLPIXELMAPUSVPROC)load("glPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1134:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyPixels = (PFNGLCOPYPIXELSPROC)load("glCopyPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1135:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawPixels = (PFNGLDRAWPIXELSPROC)load("glDrawPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1136:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetClipPlane = (PFNGLGETCLIPPLANEPROC)load("glGetClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1137:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightfv = (PFNGLGETLIGHTFVPROC)load("glGetLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1138:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightiv = (PFNGLGETLIGHTIVPROC)load("glGetLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1139:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapdv = (PFNGLGETMAPDVPROC)load("glGetMapdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1140:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapfv = (PFNGLGETMAPFVPROC)load("glGetMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1141:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapiv = (PFNGLGETMAPIVPROC)load("glGetMapiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1142:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialfv = (PFNGLGETMATERIALFVPROC)load("glGetMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1143:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialiv = (PFNGLGETMATERIALIVPROC)load("glGetMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1144:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapfv = (PFNGLGETPIXELMAPFVPROC)load("glGetPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1145:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapuiv = (PFNGLGETPIXELMAPUIVPROC)load("glGetPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1146:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapusv = (PFNGLGETPIXELMAPUSVPROC)load("glGetPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1147:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPolygonStipple = (PFNGLGETPOLYGONSTIPPLEPROC)load("glGetPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1148:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnvfv = (PFNGLGETTEXENVFVPROC)load("glGetTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1149:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnviv = (PFNGLGETTEXENVIVPROC)load("glGetTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1150:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGendv = (PFNGLGETTEXGENDVPROC)load("glGetTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1151:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGenfv = (PFNGLGETTEXGENFVPROC)load("glGetTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1152:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGeniv = (PFNGLGETTEXGENIVPROC)load("glGetTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1153:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsList = (PFNGLISLISTPROC)load("glIsList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1154:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrustum = (PFNGLFRUSTUMPROC)load("glFrustum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1155:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadIdentity = (PFNGLLOADIDENTITYPROC)load("glLoadIdentity"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1156:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixf = (PFNGLLOADMATRIXFPROC)load("glLoadMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1157:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixd = (PFNGLLOADMATRIXDPROC)load("glLoadMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1158:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMatrixMode = (PFNGLMATRIXMODEPROC)load("glMatrixMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1159:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixf = (PFNGLMULTMATRIXFPROC)load("glMultMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1160:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixd = (PFNGLMULTMATRIXDPROC)load("glMultMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1161:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glOrtho = (PFNGLORTHOPROC)load("glOrtho"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1162:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopMatrix = (PFNGLPOPMATRIXPROC)load("glPopMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1163:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushMatrix = (PFNGLPUSHMATRIXPROC)load("glPushMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1164:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotated = (PFNGLROTATEDPROC)load("glRotated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1165:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotatef = (PFNGLROTATEFPROC)load("glRotatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1166:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScaled = (PFNGLSCALEDPROC)load("glScaled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1167:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScalef = (PFNGLSCALEFPROC)load("glScalef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1168:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslated = (PFNGLTRANSLATEDPROC)load("glTranslated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1169:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslatef = (PFNGLTRANSLATEFPROC)load("glTranslatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1173:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1174:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1175:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1176:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1177:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1178:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1179:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage1D = (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1180:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1181:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1182:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1183:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1184:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1185:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1186:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1187:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glArrayElement = (PFNGLARRAYELEMENTPROC)load("glArrayElement"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1188:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorPointer = (PFNGLCOLORPOINTERPROC)load("glColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1189:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableClientState = (PFNGLDISABLECLIENTSTATEPROC)load("glDisableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1190:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagPointer = (PFNGLEDGEFLAGPOINTERPROC)load("glEdgeFlagPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1191:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableClientState = (PFNGLENABLECLIENTSTATEPROC)load("glEnableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1192:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexPointer = (PFNGLINDEXPOINTERPROC)load("glIndexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1193:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInterleavedArrays = (PFNGLINTERLEAVEDARRAYSPROC)load("glInterleavedArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1194:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormalPointer = (PFNGLNORMALPOINTERPROC)load("glNormalPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1195:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoordPointer = (PFNGLTEXCOORDPOINTERPROC)load("glTexCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1196:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexPointer = (PFNGLVERTEXPOINTERPROC)load("glVertexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1197:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAreTexturesResident = (PFNGLARETEXTURESRESIDENTPROC)load("glAreTexturesResident"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1198:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrioritizeTextures = (PFNGLPRIORITIZETEXTURESPROC)load("glPrioritizeTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1199:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexub = (PFNGLINDEXUBPROC)load("glIndexub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1200:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexubv = (PFNGLINDEXUBVPROC)load("glIndexubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1201:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopClientAttrib = (PFNGLPOPCLIENTATTRIBPROC)load("glPopClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1202:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushClientAttrib = (PFNGLPUSHCLIENTATTRIBPROC)load("glPushClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1206:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1207:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1208:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1209:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_3’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1213:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1214:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1215:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1216:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1217:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage1D = (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1218:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1219:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1220:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage1D = (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1221:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetCompressedTexImage = (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1222:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientActiveTexture = (PFNGLCLIENTACTIVETEXTUREPROC)load("glClientActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1223:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1d = (PFNGLMULTITEXCOORD1DPROC)load("glMultiTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1224:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1dv = (PFNGLMULTITEXCOORD1DVPROC)load("glMultiTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1225:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1f = (PFNGLMULTITEXCOORD1FPROC)load("glMultiTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1226:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1fv = (PFNGLMULTITEXCOORD1FVPROC)load("glMultiTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1227:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1i = (PFNGLMULTITEXCOORD1IPROC)load("glMultiTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1228:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1iv = (PFNGLMULTITEXCOORD1IVPROC)load("glMultiTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1229:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1s = (PFNGLMULTITEXCOORD1SPROC)load("glMultiTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1230:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1sv = (PFNGLMULTITEXCOORD1SVPROC)load("glMultiTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1231:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2d = (PFNGLMULTITEXCOORD2DPROC)load("glMultiTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1232:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2dv = (PFNGLMULTITEXCOORD2DVPROC)load("glMultiTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1233:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2f = (PFNGLMULTITEXCOORD2FPROC)load("glMultiTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1234:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2fv = (PFNGLMULTITEXCOORD2FVPROC)load("glMultiTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1235:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2i = (PFNGLMULTITEXCOORD2IPROC)load("glMultiTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1236:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2iv = (PFNGLMULTITEXCOORD2IVPROC)load("glMultiTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1237:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2s = (PFNGLMULTITEXCOORD2SPROC)load("glMultiTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1238:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2sv = (PFNGLMULTITEXCOORD2SVPROC)load("glMultiTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1239:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3d = (PFNGLMULTITEXCOORD3DPROC)load("glMultiTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1240:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3dv = (PFNGLMULTITEXCOORD3DVPROC)load("glMultiTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1241:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3f = (PFNGLMULTITEXCOORD3FPROC)load("glMultiTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1242:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3fv = (PFNGLMULTITEXCOORD3FVPROC)load("glMultiTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1243:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3i = (PFNGLMULTITEXCOORD3IPROC)load("glMultiTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1244:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3iv = (PFNGLMULTITEXCOORD3IVPROC)load("glMultiTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1245:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3s = (PFNGLMULTITEXCOORD3SPROC)load("glMultiTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1246:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3sv = (PFNGLMULTITEXCOORD3SVPROC)load("glMultiTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1247:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4d = (PFNGLMULTITEXCOORD4DPROC)load("glMultiTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1248:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4dv = (PFNGLMULTITEXCOORD4DVPROC)load("glMultiTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1249:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4f = (PFNGLMULTITEXCOORD4FPROC)load("glMultiTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1250:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4fv = (PFNGLMULTITEXCOORD4FVPROC)load("glMultiTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1251:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4i = (PFNGLMULTITEXCOORD4IPROC)load("glMultiTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1252:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4iv = (PFNGLMULTITEXCOORD4IVPROC)load("glMultiTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1253:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4s = (PFNGLMULTITEXCOORD4SPROC)load("glMultiTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1254:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4sv = (PFNGLMULTITEXCOORD4SVPROC)load("glMultiTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1255:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixf = (PFNGLLOADTRANSPOSEMATRIXFPROC)load("glLoadTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1256:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixd = (PFNGLLOADTRANSPOSEMATRIXDPROC)load("glLoadTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1257:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixf = (PFNGLMULTTRANSPOSEMATRIXFPROC)load("glMultTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1258:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixd = (PFNGLMULTTRANSPOSEMATRIXDPROC)load("glMultTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_4’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1262:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1263:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawArrays = (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1264:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElements = (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1265:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterf = (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1266:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterfv = (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1267:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteri = (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1268:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteriv = (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1269:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordf = (PFNGLFOGCOORDFPROC)load("glFogCoordf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1270:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordfv = (PFNGLFOGCOORDFVPROC)load("glFogCoordfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1271:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordd = (PFNGLFOGCOORDDPROC)load("glFogCoordd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1272:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoorddv = (PFNGLFOGCOORDDVPROC)load("glFogCoorddv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1273:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordPointer = (PFNGLFOGCOORDPOINTERPROC)load("glFogCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1274:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3b = (PFNGLSECONDARYCOLOR3BPROC)load("glSecondaryColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1275:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3bv = (PFNGLSECONDARYCOLOR3BVPROC)load("glSecondaryColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1276:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3d = (PFNGLSECONDARYCOLOR3DPROC)load("glSecondaryColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1277:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3dv = (PFNGLSECONDARYCOLOR3DVPROC)load("glSecondaryColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1278:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3f = (PFNGLSECONDARYCOLOR3FPROC)load("glSecondaryColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1279:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3fv = (PFNGLSECONDARYCOLOR3FVPROC)load("glSecondaryColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1280:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3i = (PFNGLSECONDARYCOLOR3IPROC)load("glSecondaryColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1281:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3iv = (PFNGLSECONDARYCOLOR3IVPROC)load("glSecondaryColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1282:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3s = (PFNGLSECONDARYCOLOR3SPROC)load("glSecondaryColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1283:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3sv = (PFNGLSECONDARYCOLOR3SVPROC)load("glSecondaryColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1284:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ub = (PFNGLSECONDARYCOLOR3UBPROC)load("glSecondaryColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1285:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ubv = (PFNGLSECONDARYCOLOR3UBVPROC)load("glSecondaryColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1286:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ui = (PFNGLSECONDARYCOLOR3UIPROC)load("glSecondaryColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1287:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3uiv = (PFNGLSECONDARYCOLOR3UIVPROC)load("glSecondaryColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1288:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3us = (PFNGLSECONDARYCOLOR3USPROC)load("glSecondaryColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1289:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3usv = (PFNGLSECONDARYCOLOR3USVPROC)load("glSecondaryColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1290:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColorPointer = (PFNGLSECONDARYCOLORPOINTERPROC)load("glSecondaryColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1291:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2d = (PFNGLWINDOWPOS2DPROC)load("glWindowPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1292:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2dv = (PFNGLWINDOWPOS2DVPROC)load("glWindowPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1293:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2f = (PFNGLWINDOWPOS2FPROC)load("glWindowPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1294:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2fv = (PFNGLWINDOWPOS2FVPROC)load("glWindowPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1295:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2i = (PFNGLWINDOWPOS2IPROC)load("glWindowPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1296:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2iv = (PFNGLWINDOWPOS2IVPROC)load("glWindowPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1297:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2s = (PFNGLWINDOWPOS2SPROC)load("glWindowPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1298:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2sv = (PFNGLWINDOWPOS2SVPROC)load("glWindowPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1299:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3d = (PFNGLWINDOWPOS3DPROC)load("glWindowPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1300:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3dv = (PFNGLWINDOWPOS3DVPROC)load("glWindowPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1301:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3f = (PFNGLWINDOWPOS3FPROC)load("glWindowPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1302:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3fv = (PFNGLWINDOWPOS3FVPROC)load("glWindowPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1303:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3i = (PFNGLWINDOWPOS3IPROC)load("glWindowPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1304:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3iv = (PFNGLWINDOWPOS3IVPROC)load("glWindowPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1305:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3s = (PFNGLWINDOWPOS3SPROC)load("glWindowPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1306:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3sv = (PFNGLWINDOWPOS3SVPROC)load("glWindowPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1307:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1308:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_5’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1312:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1313:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1314:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1315:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1316:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1317:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1318:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectiv = (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1319:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1320:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1321:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1322:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1323:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1324:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1325:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1326:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferSubData = (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1327:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1328:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1329:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1330:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1334:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1335:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1336:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1337:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1338:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1339:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1340:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1341:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1342:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1343:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1344:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1345:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1346:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1347:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1348:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1349:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1350:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1351:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1352:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1353:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1354:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1355:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1356:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1357:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1358:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1359:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1360:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1361:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribdv = (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1362:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1363:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1364:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1365:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1366:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1367:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1368:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1369:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1370:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1371:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1372:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1373:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1374:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1375:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1376:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1377:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1378:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1379:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1380:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1381:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1382:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1383:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1384:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1385:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1386:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1387:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1388:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1389:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1390:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1391:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1dv = (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1392:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1393:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1394:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1395:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1sv = (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1396:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1397:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2dv = (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1398:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1399:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1400:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1401:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2sv = (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1402:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1403:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3dv = (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1404:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1405:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1406:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1407:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3sv = (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1408:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nbv = (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1409:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Niv = (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1410:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nsv = (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1411:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nub = (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1412:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nubv = (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1413:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nuiv = (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1414:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nusv = (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1415:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4bv = (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1416:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1417:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4dv = (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1418:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1419:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1420:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4iv = (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1421:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1422:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4sv = (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1423:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4ubv = (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1424:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4uiv = (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1425:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4usv = (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1426:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1430:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1431:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1432:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1433:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1434:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1435:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1439:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1440:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1441:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1442:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1443:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1444:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1445:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1446:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1447:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1448:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1449:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1450:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1451:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1452:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginConditionalRender = (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1453:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndConditionalRender = (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1454:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1455:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1456:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1457:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1i = (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1458:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2i = (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1459:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3i = (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1460:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1461:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1ui = (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1462:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2ui = (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1463:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3ui = (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1464:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1465:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1iv = (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1466:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2iv = (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1467:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3iv = (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1468:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1469:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1uiv = (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1470:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2uiv = (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1471:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3uiv = (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1472:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1473:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4bv = (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1474:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4sv = (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1475:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ubv = (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1476:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4usv = (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1477:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1478:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFragDataLocation = (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1479:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1480:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1481:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1482:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1483:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1484:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1485:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1486:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1487:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1488:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1489:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1490:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1491:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1492:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1493:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1494:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1495:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1496:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1497:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1498:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1499:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1500:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1501:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1502:38: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1503:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1504:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1505:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1506:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1507:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1508:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture1D = (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1509:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1510:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture3D = (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1511:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1512:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1513:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1514:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1515:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1516:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1517:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1518:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1519:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1520:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1521:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1522:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1526:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1527:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1528:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1529:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrimitiveRestartIndex = (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1530:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1531:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1532:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1533:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformName = (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1534:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1535:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1536:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1537:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1538:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1539:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1540:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1544:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1545:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1546:43: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1547:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElementsBaseVertex = (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load("glMultiDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1548:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1549:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1550:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1551:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1552:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1553:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1554:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1555:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1556:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1557:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1558:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1559:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2DMultisample = (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1560:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3DMultisample = (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1561:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1562:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_APPLE_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1566:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArrayAPPLE = (PFNGLBINDVERTEXARRAYAPPLEPROC)load("glBindVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1567:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArraysAPPLE = (PFNGLDELETEVERTEXARRAYSAPPLEPROC)load("glDeleteVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1568:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArraysAPPLE = (PFNGLGENVERTEXARRAYSAPPLEPROC)load("glGenVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1569:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArrayAPPLE = (PFNGLISVERTEXARRAYAPPLEPROC)load("glIsVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_multisample’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1573:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverageARB = (PFNGLSAMPLECOVERAGEARBPROC)load("glSampleCoverageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_robustness’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1577:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetGraphicsResetStatusARB = (PFNGLGETGRAPHICSRESETSTATUSARBPROC)load("glGetGraphicsResetStatusARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1578:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnTexImageARB = (PFNGLGETNTEXIMAGEARBPROC)load("glGetnTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1579:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadnPixelsARB = (PFNGLREADNPIXELSARBPROC)load("glReadnPixelsARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1580:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnCompressedTexImageARB = (PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC)load("glGetnCompressedTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1581:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformfvARB = (PFNGLGETNUNIFORMFVARBPROC)load("glGetnUniformfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1582:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformivARB = (PFNGLGETNUNIFORMIVARBPROC)load("glGetnUniformivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1583:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformuivARB = (PFNGLGETNUNIFORMUIVARBPROC)load("glGetnUniformuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1584:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformdvARB = (PFNGLGETNUNIFORMDVARBPROC)load("glGetnUniformdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1585:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapdvARB = (PFNGLGETNMAPDVARBPROC)load("glGetnMapdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1586:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapfvARB = (PFNGLGETNMAPFVARBPROC)load("glGetnMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1587:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapivARB = (PFNGLGETNMAPIVARBPROC)load("glGetnMapivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1588:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapfvARB = (PFNGLGETNPIXELMAPFVARBPROC)load("glGetnPixelMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1589:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapuivARB = (PFNGLGETNPIXELMAPUIVARBPROC)load("glGetnPixelMapuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1590:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapusvARB = (PFNGLGETNPIXELMAPUSVARBPROC)load("glGetnPixelMapusvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1591:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPolygonStippleARB = (PFNGLGETNPOLYGONSTIPPLEARBPROC)load("glGetnPolygonStippleARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1592:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnColorTableARB = (PFNGLGETNCOLORTABLEARBPROC)load("glGetnColorTableARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1593:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnConvolutionFilterARB = (PFNGLGETNCONVOLUTIONFILTERARBPROC)load("glGetnConvolutionFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1594:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnSeparableFilterARB = (PFNGLGETNSEPARABLEFILTERARBPROC)load("glGetnSeparableFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1595:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnHistogramARB = (PFNGLGETNHISTOGRAMARBPROC)load("glGetnHistogramARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1596:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMinmaxARB = (PFNGLGETNMINMAXARBPROC)load("glGetnMinmaxARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1600:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1601:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1602:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1603:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_KHR_debug’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1607:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControl = (PFNGLDEBUGMESSAGECONTROLPROC)load("glDebugMessageControl"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1608:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsert = (PFNGLDEBUGMESSAGEINSERTPROC)load("glDebugMessageInsert"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1609:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallback = (PFNGLDEBUGMESSAGECALLBACKPROC)load("glDebugMessageCallback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1610:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLog = (PFNGLGETDEBUGMESSAGELOGPROC)load("glGetDebugMessageLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1611:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroup = (PFNGLPUSHDEBUGGROUPPROC)load("glPushDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1612:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroup = (PFNGLPOPDEBUGGROUPPROC)load("glPopDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1613:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabel = (PFNGLOBJECTLABELPROC)load("glObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1614:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabel = (PFNGLGETOBJECTLABELPROC)load("glGetObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1615:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabel = (PFNGLOBJECTPTRLABELPROC)load("glObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1616:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabel = (PFNGLGETOBJECTPTRLABELPROC)load("glGetObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1617:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1618:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControlKHR = (PFNGLDEBUGMESSAGECONTROLKHRPROC)load("glDebugMessageControlKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1619:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsertKHR = (PFNGLDEBUGMESSAGEINSERTKHRPROC)load("glDebugMessageInsertKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1620:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallbackKHR = (PFNGLDEBUGMESSAGECALLBACKKHRPROC)load("glDebugMessageCallbackKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1621:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLogKHR = (PFNGLGETDEBUGMESSAGELOGKHRPROC)load("glGetDebugMessageLogKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1622:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroupKHR = (PFNGLPUSHDEBUGGROUPKHRPROC)load("glPushDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1623:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroupKHR = (PFNGLPOPDEBUGGROUPKHRPROC)load("glPopDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1624:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabelKHR = (PFNGLOBJECTLABELKHRPROC)load("glObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1625:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabelKHR = (PFNGLGETOBJECTLABELKHRPROC)load("glGetObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1626:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabelKHR = (PFNGLOBJECTPTRLABELKHRPROC)load("glObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1627:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabelKHR = (PFNGLGETOBJECTPTRLABELKHRPROC)load("glGetObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1628:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointervKHR = (PFNGLGETPOINTERVKHRPROC)load("glGetPointervKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘gladLoadGLLoader’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1696:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ [ 95%] Building C object tools/depth-quality/CMakeFiles/rs-depth-quality.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DINTERNAL_FW -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/rs-depth-quality -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-depth-quality.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/tinyfiledialogs/tinyfiledialogs.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/tinyfiledialogs/tinyfiledialogs.c:87: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 96%] Linking CXX executable rs-depth-quality-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-depth-quality.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-depth-quality.dir/__/__/common/model-views.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/notifications.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/viewer.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/ux-window.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/ux-alignment.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/opengl3.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/rs-config.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/os.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/fw-update-helper.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/common/on-chip-calib.cpp.o CMakeFiles/rs-depth-quality.dir/rs-depth-quality.cpp.o CMakeFiles/rs-depth-quality.dir/depth-quality-model.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui_draw.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o CMakeFiles/rs-depth-quality.dir/__/__/third-party/glad/glad.c.o CMakeFiles/rs-depth-quality.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o -o rs-depth-quality-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl:/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../third-party/glfw/src/libglfw3.a -lGL -lGLU ../../src/gl/librealsense2-framos-gl.so.2.29.8 ../../common/fw/libuvc_fw.a -lrt -lm -ldl -lX11 ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 96%] Built target rs-depth-quality make -f tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/build.make tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/DependInfo.cmake --color= Scanning dependencies of target rs-rosbag-inspector make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/build.make tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 96%] Building CXX object tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/rs-rosbag-inspector.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-rosbag-inspector.dir/rs-rosbag-inspector.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector.cpp In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/maybe_include.hpp:18:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/function_iterate.hpp:14, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/preprocessor/iteration/detail/iter/forward1.hpp:52, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function.hpp:64, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include/ros/message_event.h:42, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag.h:50, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/print_helpers.h:12, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector.cpp:30: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp: In instantiation of ‘void boost::detail::function::basic_vtable1::assign_functor(FunctionObj, boost::detail::function::function_buffer&, mpl_::true_) const [with FunctionObj = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; mpl_::true_ = mpl_::bool_]’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:608:27: required from ‘bool boost::detail::function::basic_vtable1::assign_to(FunctionObj, boost::detail::function::function_buffer&, boost::detail::function::function_obj_tag) const [with FunctionObj = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:498:27: required from ‘bool boost::detail::function::basic_vtable1::assign_to(F, boost::detail::function::function_buffer&) const [with F = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:942:7: required from ‘void boost::function1::assign_to(Functor) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:728:7: required from ‘boost::function1::function1(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:1077:16: required from ‘boost::function::function(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector.cpp:256:73: required from here /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:572:11: warning: placement new constructing an object of type ‘rosbag::TopicQuery’ and size ‘24’ in a region of type ‘char’ and size ‘1’ [-Wplacement-new=] new (reinterpret_cast(&functor.data)) FunctionObj(f); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/detail/prologue.hpp:17:0, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function.hpp:24, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include/ros/message_event.h:42, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/realsense-file/rosbag/rosbag_storage/include/rosbag/bag.h:50, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/print_helpers.h:12, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector.cpp:30: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp: In instantiation of ‘static void boost::detail::function::functor_manager_common::manage_small(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type) [with Functor = rosbag::TopicQuery]’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:364:56: required from ‘static void boost::detail::function::functor_manager::manager(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type, mpl_::true_) [with Functor = rosbag::TopicQuery; mpl_::true_ = mpl_::bool_]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:412:18: required from ‘static void boost::detail::function::functor_manager::manager(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type, boost::detail::function::function_obj_tag) [with Functor = rosbag::TopicQuery]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:440:20: required from ‘static void boost::detail::function::functor_manager::manage(const boost::detail::function::function_buffer&, boost::detail::function::function_buffer&, boost::detail::function::functor_manager_operation_type) [with Functor = rosbag::TopicQuery]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:940:13: required from ‘void boost::function1::assign_to(Functor) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:728:7: required from ‘boost::function1::function1(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_template.hpp:1077:16: required from ‘boost::function::function(Functor, typename boost::enable_if_c::value>::value, int>::type) [with Functor = rosbag::TopicQuery; R = bool; T0 = const rosbag::ConnectionInfo*; typename boost::enable_if_c::value>::value, int>::type = int]’ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector.cpp:256:73: required from here /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost/boost/function/function_base.hpp:318:13: warning: placement new constructing an object of type ‘boost::detail::function::functor_manager_common::functor_type {aka rosbag::TopicQuery}’ and size ‘24’ in a region of type ‘char’ and size ‘1’ [-Wplacement-new=] new (reinterpret_cast(&out_buffer.data)) functor_type(*in_functor); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [ 97%] Building CXX object tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/__/__/common/os.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-rosbag-inspector.dir/__/__/common/os.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/os.cpp [ 97%] Building C object tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/glad/glad.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/glad/glad.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:26: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:864:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:865:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:866:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glHint = (PFNGLHINTPROC)load("glHint"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:867:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:868:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:869:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:870:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:871:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:872:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:873:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:874:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:875:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:876:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:877:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:878:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClear = (PFNGLCLEARPROC)load("glClear"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:879:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:880:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:881:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:882:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:883:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:884:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:885:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:886:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:887:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:888:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:889:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:890:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:891:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:892:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:893:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:894:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:895:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:896:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:897:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:898:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:899:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:900:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:901:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:902:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:903:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:904:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:905:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:906:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:907:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:908:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:909:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:910:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:911:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:912:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNewList = (PFNGLNEWLISTPROC)load("glNewList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:913:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndList = (PFNGLENDLISTPROC)load("glEndList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:914:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallList = (PFNGLCALLLISTPROC)load("glCallList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:915:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallLists = (PFNGLCALLLISTSPROC)load("glCallLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:916:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteLists = (PFNGLDELETELISTSPROC)load("glDeleteLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:917:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenLists = (PFNGLGENLISTSPROC)load("glGenLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:918:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glListBase = (PFNGLLISTBASEPROC)load("glListBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:919:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBegin = (PFNGLBEGINPROC)load("glBegin"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:920:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBitmap = (PFNGLBITMAPPROC)load("glBitmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:921:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3b = (PFNGLCOLOR3BPROC)load("glColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:922:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3bv = (PFNGLCOLOR3BVPROC)load("glColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:923:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3d = (PFNGLCOLOR3DPROC)load("glColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:924:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3dv = (PFNGLCOLOR3DVPROC)load("glColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:925:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3f = (PFNGLCOLOR3FPROC)load("glColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:926:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3fv = (PFNGLCOLOR3FVPROC)load("glColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:927:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3i = (PFNGLCOLOR3IPROC)load("glColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:928:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3iv = (PFNGLCOLOR3IVPROC)load("glColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:929:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3s = (PFNGLCOLOR3SPROC)load("glColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:930:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3sv = (PFNGLCOLOR3SVPROC)load("glColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:931:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ub = (PFNGLCOLOR3UBPROC)load("glColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:932:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ubv = (PFNGLCOLOR3UBVPROC)load("glColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:933:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ui = (PFNGLCOLOR3UIPROC)load("glColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:934:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3uiv = (PFNGLCOLOR3UIVPROC)load("glColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:935:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3us = (PFNGLCOLOR3USPROC)load("glColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:936:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3usv = (PFNGLCOLOR3USVPROC)load("glColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:937:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4b = (PFNGLCOLOR4BPROC)load("glColor4b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:938:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4bv = (PFNGLCOLOR4BVPROC)load("glColor4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:939:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4d = (PFNGLCOLOR4DPROC)load("glColor4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:940:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4dv = (PFNGLCOLOR4DVPROC)load("glColor4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:941:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4f = (PFNGLCOLOR4FPROC)load("glColor4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:942:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4fv = (PFNGLCOLOR4FVPROC)load("glColor4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:943:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4i = (PFNGLCOLOR4IPROC)load("glColor4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:944:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4iv = (PFNGLCOLOR4IVPROC)load("glColor4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:945:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4s = (PFNGLCOLOR4SPROC)load("glColor4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:946:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4sv = (PFNGLCOLOR4SVPROC)load("glColor4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:947:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ub = (PFNGLCOLOR4UBPROC)load("glColor4ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:948:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ubv = (PFNGLCOLOR4UBVPROC)load("glColor4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:949:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ui = (PFNGLCOLOR4UIPROC)load("glColor4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:950:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4uiv = (PFNGLCOLOR4UIVPROC)load("glColor4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:951:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4us = (PFNGLCOLOR4USPROC)load("glColor4us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:952:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4usv = (PFNGLCOLOR4USVPROC)load("glColor4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:953:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlag = (PFNGLEDGEFLAGPROC)load("glEdgeFlag"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:954:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagv = (PFNGLEDGEFLAGVPROC)load("glEdgeFlagv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:955:15: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnd = (PFNGLENDPROC)load("glEnd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:956:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexd = (PFNGLINDEXDPROC)load("glIndexd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:957:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexdv = (PFNGLINDEXDVPROC)load("glIndexdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:958:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexf = (PFNGLINDEXFPROC)load("glIndexf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:959:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexfv = (PFNGLINDEXFVPROC)load("glIndexfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:960:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexi = (PFNGLINDEXIPROC)load("glIndexi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:961:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexiv = (PFNGLINDEXIVPROC)load("glIndexiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:962:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexs = (PFNGLINDEXSPROC)load("glIndexs"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:963:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexsv = (PFNGLINDEXSVPROC)load("glIndexsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:964:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3b = (PFNGLNORMAL3BPROC)load("glNormal3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:965:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3bv = (PFNGLNORMAL3BVPROC)load("glNormal3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:966:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3d = (PFNGLNORMAL3DPROC)load("glNormal3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:967:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3dv = (PFNGLNORMAL3DVPROC)load("glNormal3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:968:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3f = (PFNGLNORMAL3FPROC)load("glNormal3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:969:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3fv = (PFNGLNORMAL3FVPROC)load("glNormal3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:970:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3i = (PFNGLNORMAL3IPROC)load("glNormal3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:971:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3iv = (PFNGLNORMAL3IVPROC)load("glNormal3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:972:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3s = (PFNGLNORMAL3SPROC)load("glNormal3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:973:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3sv = (PFNGLNORMAL3SVPROC)load("glNormal3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:974:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2d = (PFNGLRASTERPOS2DPROC)load("glRasterPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:975:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2dv = (PFNGLRASTERPOS2DVPROC)load("glRasterPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:976:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2f = (PFNGLRASTERPOS2FPROC)load("glRasterPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:977:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2fv = (PFNGLRASTERPOS2FVPROC)load("glRasterPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:978:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2i = (PFNGLRASTERPOS2IPROC)load("glRasterPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:979:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2iv = (PFNGLRASTERPOS2IVPROC)load("glRasterPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:980:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2s = (PFNGLRASTERPOS2SPROC)load("glRasterPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:981:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2sv = (PFNGLRASTERPOS2SVPROC)load("glRasterPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:982:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3d = (PFNGLRASTERPOS3DPROC)load("glRasterPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:983:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3dv = (PFNGLRASTERPOS3DVPROC)load("glRasterPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:984:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3f = (PFNGLRASTERPOS3FPROC)load("glRasterPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:985:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3fv = (PFNGLRASTERPOS3FVPROC)load("glRasterPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:986:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3i = (PFNGLRASTERPOS3IPROC)load("glRasterPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:987:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3iv = (PFNGLRASTERPOS3IVPROC)load("glRasterPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:988:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3s = (PFNGLRASTERPOS3SPROC)load("glRasterPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:989:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3sv = (PFNGLRASTERPOS3SVPROC)load("glRasterPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:990:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4d = (PFNGLRASTERPOS4DPROC)load("glRasterPos4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:991:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4dv = (PFNGLRASTERPOS4DVPROC)load("glRasterPos4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:992:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4f = (PFNGLRASTERPOS4FPROC)load("glRasterPos4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:993:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4fv = (PFNGLRASTERPOS4FVPROC)load("glRasterPos4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:994:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4i = (PFNGLRASTERPOS4IPROC)load("glRasterPos4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:995:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4iv = (PFNGLRASTERPOS4IVPROC)load("glRasterPos4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:996:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4s = (PFNGLRASTERPOS4SPROC)load("glRasterPos4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:997:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4sv = (PFNGLRASTERPOS4SVPROC)load("glRasterPos4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:998:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectd = (PFNGLRECTDPROC)load("glRectd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:999:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectdv = (PFNGLRECTDVPROC)load("glRectdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1000:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectf = (PFNGLRECTFPROC)load("glRectf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1001:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectfv = (PFNGLRECTFVPROC)load("glRectfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1002:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRecti = (PFNGLRECTIPROC)load("glRecti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1003:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectiv = (PFNGLRECTIVPROC)load("glRectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1004:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRects = (PFNGLRECTSPROC)load("glRects"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1005:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectsv = (PFNGLRECTSVPROC)load("glRectsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1006:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1d = (PFNGLTEXCOORD1DPROC)load("glTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1007:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1dv = (PFNGLTEXCOORD1DVPROC)load("glTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1008:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1f = (PFNGLTEXCOORD1FPROC)load("glTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1009:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1fv = (PFNGLTEXCOORD1FVPROC)load("glTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1010:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1i = (PFNGLTEXCOORD1IPROC)load("glTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1011:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1iv = (PFNGLTEXCOORD1IVPROC)load("glTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1012:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1s = (PFNGLTEXCOORD1SPROC)load("glTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1013:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1sv = (PFNGLTEXCOORD1SVPROC)load("glTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1014:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2d = (PFNGLTEXCOORD2DPROC)load("glTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1015:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2dv = (PFNGLTEXCOORD2DVPROC)load("glTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1016:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2f = (PFNGLTEXCOORD2FPROC)load("glTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1017:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2fv = (PFNGLTEXCOORD2FVPROC)load("glTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1018:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2i = (PFNGLTEXCOORD2IPROC)load("glTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1019:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2iv = (PFNGLTEXCOORD2IVPROC)load("glTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1020:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2s = (PFNGLTEXCOORD2SPROC)load("glTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1021:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2sv = (PFNGLTEXCOORD2SVPROC)load("glTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1022:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3d = (PFNGLTEXCOORD3DPROC)load("glTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1023:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3dv = (PFNGLTEXCOORD3DVPROC)load("glTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1024:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3f = (PFNGLTEXCOORD3FPROC)load("glTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1025:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3fv = (PFNGLTEXCOORD3FVPROC)load("glTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1026:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3i = (PFNGLTEXCOORD3IPROC)load("glTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1027:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3iv = (PFNGLTEXCOORD3IVPROC)load("glTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1028:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3s = (PFNGLTEXCOORD3SPROC)load("glTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1029:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3sv = (PFNGLTEXCOORD3SVPROC)load("glTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1030:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4d = (PFNGLTEXCOORD4DPROC)load("glTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1031:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4dv = (PFNGLTEXCOORD4DVPROC)load("glTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1032:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4f = (PFNGLTEXCOORD4FPROC)load("glTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1033:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4fv = (PFNGLTEXCOORD4FVPROC)load("glTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1034:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4i = (PFNGLTEXCOORD4IPROC)load("glTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1035:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4iv = (PFNGLTEXCOORD4IVPROC)load("glTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1036:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4s = (PFNGLTEXCOORD4SPROC)load("glTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1037:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4sv = (PFNGLTEXCOORD4SVPROC)load("glTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1038:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2d = (PFNGLVERTEX2DPROC)load("glVertex2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1039:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2dv = (PFNGLVERTEX2DVPROC)load("glVertex2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1040:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2f = (PFNGLVERTEX2FPROC)load("glVertex2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1041:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2fv = (PFNGLVERTEX2FVPROC)load("glVertex2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1042:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2i = (PFNGLVERTEX2IPROC)load("glVertex2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1043:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2iv = (PFNGLVERTEX2IVPROC)load("glVertex2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1044:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2s = (PFNGLVERTEX2SPROC)load("glVertex2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1045:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2sv = (PFNGLVERTEX2SVPROC)load("glVertex2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1046:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3d = (PFNGLVERTEX3DPROC)load("glVertex3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1047:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3dv = (PFNGLVERTEX3DVPROC)load("glVertex3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1048:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3f = (PFNGLVERTEX3FPROC)load("glVertex3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1049:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3fv = (PFNGLVERTEX3FVPROC)load("glVertex3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1050:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3i = (PFNGLVERTEX3IPROC)load("glVertex3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1051:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3iv = (PFNGLVERTEX3IVPROC)load("glVertex3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1052:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3s = (PFNGLVERTEX3SPROC)load("glVertex3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1053:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3sv = (PFNGLVERTEX3SVPROC)load("glVertex3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1054:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4d = (PFNGLVERTEX4DPROC)load("glVertex4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1055:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4dv = (PFNGLVERTEX4DVPROC)load("glVertex4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1056:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4f = (PFNGLVERTEX4FPROC)load("glVertex4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1057:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4fv = (PFNGLVERTEX4FVPROC)load("glVertex4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1058:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4i = (PFNGLVERTEX4IPROC)load("glVertex4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1059:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4iv = (PFNGLVERTEX4IVPROC)load("glVertex4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1060:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4s = (PFNGLVERTEX4SPROC)load("glVertex4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1061:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4sv = (PFNGLVERTEX4SVPROC)load("glVertex4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1062:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClipPlane = (PFNGLCLIPPLANEPROC)load("glClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1063:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaterial = (PFNGLCOLORMATERIALPROC)load("glColorMaterial"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1064:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogf = (PFNGLFOGFPROC)load("glFogf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1065:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogfv = (PFNGLFOGFVPROC)load("glFogfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1066:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogi = (PFNGLFOGIPROC)load("glFogi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1067:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogiv = (PFNGLFOGIVPROC)load("glFogiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1068:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightf = (PFNGLLIGHTFPROC)load("glLightf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1069:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightfv = (PFNGLLIGHTFVPROC)load("glLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1070:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLighti = (PFNGLLIGHTIPROC)load("glLighti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1071:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightiv = (PFNGLLIGHTIVPROC)load("glLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1072:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelf = (PFNGLLIGHTMODELFPROC)load("glLightModelf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1073:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelfv = (PFNGLLIGHTMODELFVPROC)load("glLightModelfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1074:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeli = (PFNGLLIGHTMODELIPROC)load("glLightModeli"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1075:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeliv = (PFNGLLIGHTMODELIVPROC)load("glLightModeliv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1076:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineStipple = (PFNGLLINESTIPPLEPROC)load("glLineStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1077:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialf = (PFNGLMATERIALFPROC)load("glMaterialf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1078:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialfv = (PFNGLMATERIALFVPROC)load("glMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1079:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMateriali = (PFNGLMATERIALIPROC)load("glMateriali"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1080:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialiv = (PFNGLMATERIALIVPROC)load("glMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1081:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonStipple = (PFNGLPOLYGONSTIPPLEPROC)load("glPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1082:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShadeModel = (PFNGLSHADEMODELPROC)load("glShadeModel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1083:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvf = (PFNGLTEXENVFPROC)load("glTexEnvf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1084:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvfv = (PFNGLTEXENVFVPROC)load("glTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1085:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvi = (PFNGLTEXENVIPROC)load("glTexEnvi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1086:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnviv = (PFNGLTEXENVIVPROC)load("glTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1087:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGend = (PFNGLTEXGENDPROC)load("glTexGend"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1088:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGendv = (PFNGLTEXGENDVPROC)load("glTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1089:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenf = (PFNGLTEXGENFPROC)load("glTexGenf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1090:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenfv = (PFNGLTEXGENFVPROC)load("glTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1091:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeni = (PFNGLTEXGENIPROC)load("glTexGeni"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1092:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeniv = (PFNGLTEXGENIVPROC)load("glTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1093:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFeedbackBuffer = (PFNGLFEEDBACKBUFFERPROC)load("glFeedbackBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1094:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSelectBuffer = (PFNGLSELECTBUFFERPROC)load("glSelectBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1095:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderMode = (PFNGLRENDERMODEPROC)load("glRenderMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1096:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInitNames = (PFNGLINITNAMESPROC)load("glInitNames"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1097:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadName = (PFNGLLOADNAMEPROC)load("glLoadName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1098:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPassThrough = (PFNGLPASSTHROUGHPROC)load("glPassThrough"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1099:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopName = (PFNGLPOPNAMEPROC)load("glPopName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1100:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushName = (PFNGLPUSHNAMEPROC)load("glPushName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1101:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearAccum = (PFNGLCLEARACCUMPROC)load("glClearAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1102:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearIndex = (PFNGLCLEARINDEXPROC)load("glClearIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1103:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexMask = (PFNGLINDEXMASKPROC)load("glIndexMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1104:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAccum = (PFNGLACCUMPROC)load("glAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1105:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopAttrib = (PFNGLPOPATTRIBPROC)load("glPopAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1106:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushAttrib = (PFNGLPUSHATTRIBPROC)load("glPushAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1107:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1d = (PFNGLMAP1DPROC)load("glMap1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1108:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1f = (PFNGLMAP1FPROC)load("glMap1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1109:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2d = (PFNGLMAP2DPROC)load("glMap2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1110:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2f = (PFNGLMAP2FPROC)load("glMap2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1111:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1d = (PFNGLMAPGRID1DPROC)load("glMapGrid1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1112:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1f = (PFNGLMAPGRID1FPROC)load("glMapGrid1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1113:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2d = (PFNGLMAPGRID2DPROC)load("glMapGrid2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1114:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2f = (PFNGLMAPGRID2FPROC)load("glMapGrid2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1115:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1d = (PFNGLEVALCOORD1DPROC)load("glEvalCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1116:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1dv = (PFNGLEVALCOORD1DVPROC)load("glEvalCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1117:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1f = (PFNGLEVALCOORD1FPROC)load("glEvalCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1118:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1fv = (PFNGLEVALCOORD1FVPROC)load("glEvalCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1119:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2d = (PFNGLEVALCOORD2DPROC)load("glEvalCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1120:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2dv = (PFNGLEVALCOORD2DVPROC)load("glEvalCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1121:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2f = (PFNGLEVALCOORD2FPROC)load("glEvalCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1122:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2fv = (PFNGLEVALCOORD2FVPROC)load("glEvalCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1123:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh1 = (PFNGLEVALMESH1PROC)load("glEvalMesh1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1124:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint1 = (PFNGLEVALPOINT1PROC)load("glEvalPoint1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1125:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh2 = (PFNGLEVALMESH2PROC)load("glEvalMesh2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1126:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint2 = (PFNGLEVALPOINT2PROC)load("glEvalPoint2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1127:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAlphaFunc = (PFNGLALPHAFUNCPROC)load("glAlphaFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1128:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelZoom = (PFNGLPIXELZOOMPROC)load("glPixelZoom"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1129:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferf = (PFNGLPIXELTRANSFERFPROC)load("glPixelTransferf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1130:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferi = (PFNGLPIXELTRANSFERIPROC)load("glPixelTransferi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1131:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapfv = (PFNGLPIXELMAPFVPROC)load("glPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1132:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapuiv = (PFNGLPIXELMAPUIVPROC)load("glPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1133:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapusv = (PFNGLPIXELMAPUSVPROC)load("glPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1134:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyPixels = (PFNGLCOPYPIXELSPROC)load("glCopyPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1135:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawPixels = (PFNGLDRAWPIXELSPROC)load("glDrawPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1136:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetClipPlane = (PFNGLGETCLIPPLANEPROC)load("glGetClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1137:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightfv = (PFNGLGETLIGHTFVPROC)load("glGetLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1138:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightiv = (PFNGLGETLIGHTIVPROC)load("glGetLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1139:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapdv = (PFNGLGETMAPDVPROC)load("glGetMapdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1140:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapfv = (PFNGLGETMAPFVPROC)load("glGetMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1141:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapiv = (PFNGLGETMAPIVPROC)load("glGetMapiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1142:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialfv = (PFNGLGETMATERIALFVPROC)load("glGetMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1143:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialiv = (PFNGLGETMATERIALIVPROC)load("glGetMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1144:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapfv = (PFNGLGETPIXELMAPFVPROC)load("glGetPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1145:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapuiv = (PFNGLGETPIXELMAPUIVPROC)load("glGetPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1146:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapusv = (PFNGLGETPIXELMAPUSVPROC)load("glGetPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1147:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPolygonStipple = (PFNGLGETPOLYGONSTIPPLEPROC)load("glGetPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1148:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnvfv = (PFNGLGETTEXENVFVPROC)load("glGetTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1149:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnviv = (PFNGLGETTEXENVIVPROC)load("glGetTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1150:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGendv = (PFNGLGETTEXGENDVPROC)load("glGetTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1151:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGenfv = (PFNGLGETTEXGENFVPROC)load("glGetTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1152:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGeniv = (PFNGLGETTEXGENIVPROC)load("glGetTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1153:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsList = (PFNGLISLISTPROC)load("glIsList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1154:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrustum = (PFNGLFRUSTUMPROC)load("glFrustum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1155:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadIdentity = (PFNGLLOADIDENTITYPROC)load("glLoadIdentity"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1156:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixf = (PFNGLLOADMATRIXFPROC)load("glLoadMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1157:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixd = (PFNGLLOADMATRIXDPROC)load("glLoadMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1158:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMatrixMode = (PFNGLMATRIXMODEPROC)load("glMatrixMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1159:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixf = (PFNGLMULTMATRIXFPROC)load("glMultMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1160:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixd = (PFNGLMULTMATRIXDPROC)load("glMultMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1161:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glOrtho = (PFNGLORTHOPROC)load("glOrtho"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1162:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopMatrix = (PFNGLPOPMATRIXPROC)load("glPopMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1163:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushMatrix = (PFNGLPUSHMATRIXPROC)load("glPushMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1164:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotated = (PFNGLROTATEDPROC)load("glRotated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1165:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotatef = (PFNGLROTATEFPROC)load("glRotatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1166:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScaled = (PFNGLSCALEDPROC)load("glScaled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1167:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScalef = (PFNGLSCALEFPROC)load("glScalef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1168:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslated = (PFNGLTRANSLATEDPROC)load("glTranslated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1169:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslatef = (PFNGLTRANSLATEFPROC)load("glTranslatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1173:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1174:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1175:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1176:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1177:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1178:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1179:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage1D = (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1180:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1181:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1182:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1183:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1184:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1185:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1186:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1187:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glArrayElement = (PFNGLARRAYELEMENTPROC)load("glArrayElement"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1188:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorPointer = (PFNGLCOLORPOINTERPROC)load("glColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1189:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableClientState = (PFNGLDISABLECLIENTSTATEPROC)load("glDisableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1190:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagPointer = (PFNGLEDGEFLAGPOINTERPROC)load("glEdgeFlagPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1191:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableClientState = (PFNGLENABLECLIENTSTATEPROC)load("glEnableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1192:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexPointer = (PFNGLINDEXPOINTERPROC)load("glIndexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1193:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInterleavedArrays = (PFNGLINTERLEAVEDARRAYSPROC)load("glInterleavedArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1194:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormalPointer = (PFNGLNORMALPOINTERPROC)load("glNormalPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1195:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoordPointer = (PFNGLTEXCOORDPOINTERPROC)load("glTexCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1196:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexPointer = (PFNGLVERTEXPOINTERPROC)load("glVertexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1197:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAreTexturesResident = (PFNGLARETEXTURESRESIDENTPROC)load("glAreTexturesResident"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1198:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrioritizeTextures = (PFNGLPRIORITIZETEXTURESPROC)load("glPrioritizeTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1199:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexub = (PFNGLINDEXUBPROC)load("glIndexub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1200:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexubv = (PFNGLINDEXUBVPROC)load("glIndexubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1201:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopClientAttrib = (PFNGLPOPCLIENTATTRIBPROC)load("glPopClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1202:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushClientAttrib = (PFNGLPUSHCLIENTATTRIBPROC)load("glPushClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1206:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1207:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1208:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1209:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_3’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1213:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1214:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1215:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1216:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1217:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage1D = (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1218:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1219:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1220:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage1D = (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1221:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetCompressedTexImage = (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1222:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientActiveTexture = (PFNGLCLIENTACTIVETEXTUREPROC)load("glClientActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1223:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1d = (PFNGLMULTITEXCOORD1DPROC)load("glMultiTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1224:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1dv = (PFNGLMULTITEXCOORD1DVPROC)load("glMultiTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1225:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1f = (PFNGLMULTITEXCOORD1FPROC)load("glMultiTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1226:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1fv = (PFNGLMULTITEXCOORD1FVPROC)load("glMultiTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1227:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1i = (PFNGLMULTITEXCOORD1IPROC)load("glMultiTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1228:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1iv = (PFNGLMULTITEXCOORD1IVPROC)load("glMultiTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1229:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1s = (PFNGLMULTITEXCOORD1SPROC)load("glMultiTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1230:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1sv = (PFNGLMULTITEXCOORD1SVPROC)load("glMultiTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1231:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2d = (PFNGLMULTITEXCOORD2DPROC)load("glMultiTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1232:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2dv = (PFNGLMULTITEXCOORD2DVPROC)load("glMultiTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1233:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2f = (PFNGLMULTITEXCOORD2FPROC)load("glMultiTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1234:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2fv = (PFNGLMULTITEXCOORD2FVPROC)load("glMultiTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1235:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2i = (PFNGLMULTITEXCOORD2IPROC)load("glMultiTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1236:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2iv = (PFNGLMULTITEXCOORD2IVPROC)load("glMultiTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1237:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2s = (PFNGLMULTITEXCOORD2SPROC)load("glMultiTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1238:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2sv = (PFNGLMULTITEXCOORD2SVPROC)load("glMultiTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1239:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3d = (PFNGLMULTITEXCOORD3DPROC)load("glMultiTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1240:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3dv = (PFNGLMULTITEXCOORD3DVPROC)load("glMultiTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1241:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3f = (PFNGLMULTITEXCOORD3FPROC)load("glMultiTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1242:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3fv = (PFNGLMULTITEXCOORD3FVPROC)load("glMultiTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1243:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3i = (PFNGLMULTITEXCOORD3IPROC)load("glMultiTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1244:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3iv = (PFNGLMULTITEXCOORD3IVPROC)load("glMultiTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1245:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3s = (PFNGLMULTITEXCOORD3SPROC)load("glMultiTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1246:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3sv = (PFNGLMULTITEXCOORD3SVPROC)load("glMultiTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1247:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4d = (PFNGLMULTITEXCOORD4DPROC)load("glMultiTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1248:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4dv = (PFNGLMULTITEXCOORD4DVPROC)load("glMultiTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1249:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4f = (PFNGLMULTITEXCOORD4FPROC)load("glMultiTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1250:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4fv = (PFNGLMULTITEXCOORD4FVPROC)load("glMultiTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1251:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4i = (PFNGLMULTITEXCOORD4IPROC)load("glMultiTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1252:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4iv = (PFNGLMULTITEXCOORD4IVPROC)load("glMultiTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1253:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4s = (PFNGLMULTITEXCOORD4SPROC)load("glMultiTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1254:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4sv = (PFNGLMULTITEXCOORD4SVPROC)load("glMultiTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1255:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixf = (PFNGLLOADTRANSPOSEMATRIXFPROC)load("glLoadTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1256:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixd = (PFNGLLOADTRANSPOSEMATRIXDPROC)load("glLoadTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1257:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixf = (PFNGLMULTTRANSPOSEMATRIXFPROC)load("glMultTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1258:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixd = (PFNGLMULTTRANSPOSEMATRIXDPROC)load("glMultTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_4’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1262:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1263:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawArrays = (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1264:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElements = (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1265:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterf = (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1266:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterfv = (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1267:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteri = (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1268:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteriv = (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1269:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordf = (PFNGLFOGCOORDFPROC)load("glFogCoordf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1270:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordfv = (PFNGLFOGCOORDFVPROC)load("glFogCoordfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1271:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordd = (PFNGLFOGCOORDDPROC)load("glFogCoordd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1272:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoorddv = (PFNGLFOGCOORDDVPROC)load("glFogCoorddv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1273:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordPointer = (PFNGLFOGCOORDPOINTERPROC)load("glFogCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1274:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3b = (PFNGLSECONDARYCOLOR3BPROC)load("glSecondaryColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1275:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3bv = (PFNGLSECONDARYCOLOR3BVPROC)load("glSecondaryColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1276:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3d = (PFNGLSECONDARYCOLOR3DPROC)load("glSecondaryColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1277:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3dv = (PFNGLSECONDARYCOLOR3DVPROC)load("glSecondaryColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1278:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3f = (PFNGLSECONDARYCOLOR3FPROC)load("glSecondaryColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1279:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3fv = (PFNGLSECONDARYCOLOR3FVPROC)load("glSecondaryColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1280:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3i = (PFNGLSECONDARYCOLOR3IPROC)load("glSecondaryColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1281:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3iv = (PFNGLSECONDARYCOLOR3IVPROC)load("glSecondaryColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1282:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3s = (PFNGLSECONDARYCOLOR3SPROC)load("glSecondaryColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1283:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3sv = (PFNGLSECONDARYCOLOR3SVPROC)load("glSecondaryColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1284:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ub = (PFNGLSECONDARYCOLOR3UBPROC)load("glSecondaryColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1285:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ubv = (PFNGLSECONDARYCOLOR3UBVPROC)load("glSecondaryColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1286:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ui = (PFNGLSECONDARYCOLOR3UIPROC)load("glSecondaryColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1287:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3uiv = (PFNGLSECONDARYCOLOR3UIVPROC)load("glSecondaryColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1288:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3us = (PFNGLSECONDARYCOLOR3USPROC)load("glSecondaryColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1289:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3usv = (PFNGLSECONDARYCOLOR3USVPROC)load("glSecondaryColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1290:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColorPointer = (PFNGLSECONDARYCOLORPOINTERPROC)load("glSecondaryColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1291:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2d = (PFNGLWINDOWPOS2DPROC)load("glWindowPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1292:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2dv = (PFNGLWINDOWPOS2DVPROC)load("glWindowPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1293:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2f = (PFNGLWINDOWPOS2FPROC)load("glWindowPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1294:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2fv = (PFNGLWINDOWPOS2FVPROC)load("glWindowPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1295:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2i = (PFNGLWINDOWPOS2IPROC)load("glWindowPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1296:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2iv = (PFNGLWINDOWPOS2IVPROC)load("glWindowPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1297:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2s = (PFNGLWINDOWPOS2SPROC)load("glWindowPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1298:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2sv = (PFNGLWINDOWPOS2SVPROC)load("glWindowPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1299:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3d = (PFNGLWINDOWPOS3DPROC)load("glWindowPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1300:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3dv = (PFNGLWINDOWPOS3DVPROC)load("glWindowPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1301:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3f = (PFNGLWINDOWPOS3FPROC)load("glWindowPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1302:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3fv = (PFNGLWINDOWPOS3FVPROC)load("glWindowPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1303:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3i = (PFNGLWINDOWPOS3IPROC)load("glWindowPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1304:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3iv = (PFNGLWINDOWPOS3IVPROC)load("glWindowPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1305:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3s = (PFNGLWINDOWPOS3SPROC)load("glWindowPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1306:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3sv = (PFNGLWINDOWPOS3SVPROC)load("glWindowPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1307:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1308:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_5’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1312:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1313:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1314:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1315:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1316:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1317:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1318:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectiv = (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1319:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1320:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1321:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1322:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1323:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1324:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1325:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1326:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferSubData = (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1327:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1328:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1329:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1330:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1334:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1335:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1336:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1337:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1338:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1339:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1340:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1341:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1342:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1343:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1344:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1345:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1346:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1347:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1348:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1349:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1350:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1351:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1352:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1353:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1354:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1355:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1356:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1357:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1358:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1359:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1360:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1361:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribdv = (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1362:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1363:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1364:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1365:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1366:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1367:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1368:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1369:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1370:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1371:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1372:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1373:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1374:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1375:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1376:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1377:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1378:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1379:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1380:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1381:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1382:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1383:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1384:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1385:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1386:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1387:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1388:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1389:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1390:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1391:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1dv = (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1392:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1393:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1394:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1395:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1sv = (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1396:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1397:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2dv = (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1398:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1399:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1400:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1401:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2sv = (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1402:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1403:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3dv = (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1404:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1405:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1406:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1407:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3sv = (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1408:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nbv = (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1409:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Niv = (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1410:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nsv = (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1411:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nub = (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1412:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nubv = (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1413:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nuiv = (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1414:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nusv = (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1415:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4bv = (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1416:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1417:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4dv = (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1418:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1419:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1420:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4iv = (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1421:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1422:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4sv = (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1423:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4ubv = (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1424:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4uiv = (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1425:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4usv = (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1426:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1430:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1431:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1432:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1433:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1434:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1435:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1439:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1440:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1441:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1442:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1443:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1444:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1445:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1446:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1447:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1448:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1449:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1450:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1451:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1452:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginConditionalRender = (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1453:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndConditionalRender = (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1454:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1455:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1456:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1457:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1i = (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1458:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2i = (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1459:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3i = (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1460:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1461:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1ui = (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1462:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2ui = (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1463:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3ui = (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1464:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1465:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1iv = (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1466:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2iv = (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1467:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3iv = (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1468:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1469:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1uiv = (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1470:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2uiv = (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1471:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3uiv = (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1472:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1473:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4bv = (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1474:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4sv = (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1475:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ubv = (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1476:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4usv = (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1477:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1478:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFragDataLocation = (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1479:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1480:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1481:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1482:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1483:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1484:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1485:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1486:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1487:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1488:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1489:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1490:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1491:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1492:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1493:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1494:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1495:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1496:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1497:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1498:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1499:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1500:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1501:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1502:38: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1503:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1504:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1505:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1506:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1507:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1508:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture1D = (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1509:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1510:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture3D = (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1511:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1512:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1513:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1514:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1515:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1516:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1517:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1518:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1519:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1520:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1521:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1522:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1526:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1527:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1528:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1529:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrimitiveRestartIndex = (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1530:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1531:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1532:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1533:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformName = (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1534:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1535:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1536:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1537:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1538:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1539:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1540:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1544:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1545:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1546:43: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1547:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElementsBaseVertex = (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load("glMultiDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1548:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1549:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1550:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1551:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1552:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1553:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1554:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1555:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1556:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1557:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1558:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1559:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2DMultisample = (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1560:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3DMultisample = (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1561:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1562:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_APPLE_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1566:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArrayAPPLE = (PFNGLBINDVERTEXARRAYAPPLEPROC)load("glBindVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1567:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArraysAPPLE = (PFNGLDELETEVERTEXARRAYSAPPLEPROC)load("glDeleteVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1568:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArraysAPPLE = (PFNGLGENVERTEXARRAYSAPPLEPROC)load("glGenVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1569:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArrayAPPLE = (PFNGLISVERTEXARRAYAPPLEPROC)load("glIsVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_multisample’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1573:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverageARB = (PFNGLSAMPLECOVERAGEARBPROC)load("glSampleCoverageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_robustness’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1577:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetGraphicsResetStatusARB = (PFNGLGETGRAPHICSRESETSTATUSARBPROC)load("glGetGraphicsResetStatusARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1578:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnTexImageARB = (PFNGLGETNTEXIMAGEARBPROC)load("glGetnTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1579:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadnPixelsARB = (PFNGLREADNPIXELSARBPROC)load("glReadnPixelsARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1580:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnCompressedTexImageARB = (PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC)load("glGetnCompressedTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1581:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformfvARB = (PFNGLGETNUNIFORMFVARBPROC)load("glGetnUniformfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1582:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformivARB = (PFNGLGETNUNIFORMIVARBPROC)load("glGetnUniformivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1583:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformuivARB = (PFNGLGETNUNIFORMUIVARBPROC)load("glGetnUniformuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1584:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformdvARB = (PFNGLGETNUNIFORMDVARBPROC)load("glGetnUniformdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1585:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapdvARB = (PFNGLGETNMAPDVARBPROC)load("glGetnMapdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1586:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapfvARB = (PFNGLGETNMAPFVARBPROC)load("glGetnMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1587:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapivARB = (PFNGLGETNMAPIVARBPROC)load("glGetnMapivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1588:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapfvARB = (PFNGLGETNPIXELMAPFVARBPROC)load("glGetnPixelMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1589:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapuivARB = (PFNGLGETNPIXELMAPUIVARBPROC)load("glGetnPixelMapuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1590:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapusvARB = (PFNGLGETNPIXELMAPUSVARBPROC)load("glGetnPixelMapusvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1591:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPolygonStippleARB = (PFNGLGETNPOLYGONSTIPPLEARBPROC)load("glGetnPolygonStippleARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1592:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnColorTableARB = (PFNGLGETNCOLORTABLEARBPROC)load("glGetnColorTableARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1593:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnConvolutionFilterARB = (PFNGLGETNCONVOLUTIONFILTERARBPROC)load("glGetnConvolutionFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1594:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnSeparableFilterARB = (PFNGLGETNSEPARABLEFILTERARBPROC)load("glGetnSeparableFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1595:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnHistogramARB = (PFNGLGETNHISTOGRAMARBPROC)load("glGetnHistogramARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1596:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMinmaxARB = (PFNGLGETNMINMAXARBPROC)load("glGetnMinmaxARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1600:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1601:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1602:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1603:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_KHR_debug’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1607:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControl = (PFNGLDEBUGMESSAGECONTROLPROC)load("glDebugMessageControl"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1608:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsert = (PFNGLDEBUGMESSAGEINSERTPROC)load("glDebugMessageInsert"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1609:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallback = (PFNGLDEBUGMESSAGECALLBACKPROC)load("glDebugMessageCallback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1610:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLog = (PFNGLGETDEBUGMESSAGELOGPROC)load("glGetDebugMessageLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1611:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroup = (PFNGLPUSHDEBUGGROUPPROC)load("glPushDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1612:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroup = (PFNGLPOPDEBUGGROUPPROC)load("glPopDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1613:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabel = (PFNGLOBJECTLABELPROC)load("glObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1614:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabel = (PFNGLGETOBJECTLABELPROC)load("glGetObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1615:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabel = (PFNGLOBJECTPTRLABELPROC)load("glObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1616:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabel = (PFNGLGETOBJECTPTRLABELPROC)load("glGetObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1617:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1618:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControlKHR = (PFNGLDEBUGMESSAGECONTROLKHRPROC)load("glDebugMessageControlKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1619:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsertKHR = (PFNGLDEBUGMESSAGEINSERTKHRPROC)load("glDebugMessageInsertKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1620:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallbackKHR = (PFNGLDEBUGMESSAGECALLBACKKHRPROC)load("glDebugMessageCallbackKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1621:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLogKHR = (PFNGLGETDEBUGMESSAGELOGKHRPROC)load("glGetDebugMessageLogKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1622:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroupKHR = (PFNGLPUSHDEBUGGROUPKHRPROC)load("glPushDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1623:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroupKHR = (PFNGLPOPDEBUGGROUPKHRPROC)load("glPopDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1624:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabelKHR = (PFNGLOBJECTLABELKHRPROC)load("glObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1625:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabelKHR = (PFNGLGETOBJECTLABELKHRPROC)load("glGetObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1626:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabelKHR = (PFNGLOBJECTPTRLABELKHRPROC)load("glObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1627:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabelKHR = (PFNGLGETOBJECTPTRLABELKHRPROC)load("glGetObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1628:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointervKHR = (PFNGLGETPOINTERVKHRPROC)load("glGetPointervKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘gladLoadGLLoader’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1696:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ [ 97%] Building CXX object tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui.cpp [ 98%] Building CXX object tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui_draw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui_draw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_draw.cpp [ 98%] Building CXX object tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=gnu++11 -o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/imgui/imgui_impl_glfw.cpp [ 98%] Building C object tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/rs-rosbag-inspector -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/imgui -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../common -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party/tinyfiledialogs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector/../../third-party -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/console_bridge/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/cpp_common/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rosbag_storage/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_serialization/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/rostime/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roscpp_traits/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/roslz4/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/rosbag/msgs -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/boost -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file/lz4/lib -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/tinyfiledialogs/tinyfiledialogs.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/tinyfiledialogs/tinyfiledialogs.c:87: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ [ 99%] Linking CXX executable rs-rosbag-inspector-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-rosbag-inspector.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -rdynamic CMakeFiles/rs-rosbag-inspector.dir/rs-rosbag-inspector.cpp.o CMakeFiles/rs-rosbag-inspector.dir/__/__/common/os.cpp.o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/glad/glad.c.o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui.cpp.o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui_draw.cpp.o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/imgui/imgui_impl_glfw.cpp.o CMakeFiles/rs-rosbag-inspector.dir/__/__/third-party/tinyfiledialogs/tinyfiledialogs.c.o -o rs-rosbag-inspector-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl:/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../third-party/realsense-file/librealsense-file.a ../../third-party/glfw/src/libglfw3.a -lGL -lGLU ../../src/gl/librealsense2-framos-gl.so.2.29.8 -lrt -lm -ldl -lX11 ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 99%] Built target rs-rosbag-inspector make -f tools/benchmark/CMakeFiles/rs-benchmark.dir/build.make tools/benchmark/CMakeFiles/rs-benchmark.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/benchmark /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/benchmark/CMakeFiles/rs-benchmark.dir/DependInfo.cmake --color= Scanning dependencies of target rs-benchmark make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/benchmark/CMakeFiles/rs-benchmark.dir/build.make tools/benchmark/CMakeFiles/rs-benchmark.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 99%] Building CXX object tools/benchmark/CMakeFiles/rs-benchmark.dir/rs-benchmark.cpp.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/benchmark && ccache /usr/bin/c++ -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark/rs-benchmark -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -std=gnu++11 -o CMakeFiles/rs-benchmark.dir/rs-benchmark.cpp.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark/rs-benchmark.cpp [ 99%] Building C object tools/benchmark/CMakeFiles/rs-benchmark.dir/__/__/third-party/glad/glad.c.o cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/benchmark && ccache /usr/bin/cc -DBUILD_EASYLOGGINGPP -DELPP_NO_DEFAULT_LOG_FILE -DELPP_THREAD_SAFE -DHWM_OVER_XU -DRS2_USE_V4L2_BACKEND -DUNICODE -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/realsense2-framos -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src -I/usr/include/framos/camerasuite -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark/rs-benchmark -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark/../../third-party/tclap/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark/../../third-party/glad -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/include -I/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl/../../include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -D_BSD_SOURCE -mssse3 -pthread -std=c11 -o CMakeFiles/rs-benchmark.dir/__/__/third-party/glad/glad.c.o -c /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c In file included from /usr/include/x86_64-linux-gnu/bits/libc-header-start.h:33:0, from /usr/include/stdio.h:27, from /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:26: /usr/include/features.h:184:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" ^~~~~~~ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:864:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCullFace = (PFNGLCULLFACEPROC)load("glCullFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:865:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrontFace = (PFNGLFRONTFACEPROC)load("glFrontFace"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:866:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glHint = (PFNGLHINTPROC)load("glHint"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:867:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineWidth = (PFNGLLINEWIDTHPROC)load("glLineWidth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:868:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointSize = (PFNGLPOINTSIZEPROC)load("glPointSize"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:869:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonMode = (PFNGLPOLYGONMODEPROC)load("glPolygonMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:870:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScissor = (PFNGLSCISSORPROC)load("glScissor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:871:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterf = (PFNGLTEXPARAMETERFPROC)load("glTexParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:872:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterfv = (PFNGLTEXPARAMETERFVPROC)load("glTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:873:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteri = (PFNGLTEXPARAMETERIPROC)load("glTexParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:874:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameteriv = (PFNGLTEXPARAMETERIVPROC)load("glTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:875:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage1D = (PFNGLTEXIMAGE1DPROC)load("glTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:876:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2D = (PFNGLTEXIMAGE2DPROC)load("glTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:877:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffer = (PFNGLDRAWBUFFERPROC)load("glDrawBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:878:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClear = (PFNGLCLEARPROC)load("glClear"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:879:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearColor = (PFNGLCLEARCOLORPROC)load("glClearColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:880:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearStencil = (PFNGLCLEARSTENCILPROC)load("glClearStencil"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:881:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearDepth = (PFNGLCLEARDEPTHPROC)load("glClearDepth"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:882:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMask = (PFNGLSTENCILMASKPROC)load("glStencilMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:883:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMask = (PFNGLCOLORMASKPROC)load("glColorMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:884:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthMask = (PFNGLDEPTHMASKPROC)load("glDepthMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:885:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisable = (PFNGLDISABLEPROC)load("glDisable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:886:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnable = (PFNGLENABLEPROC)load("glEnable"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:887:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFinish = (PFNGLFINISHPROC)load("glFinish"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:888:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlush = (PFNGLFLUSHPROC)load("glFlush"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:889:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFunc = (PFNGLBLENDFUNCPROC)load("glBlendFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:890:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLogicOp = (PFNGLLOGICOPPROC)load("glLogicOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:891:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFunc = (PFNGLSTENCILFUNCPROC)load("glStencilFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:892:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOp = (PFNGLSTENCILOPPROC)load("glStencilOp"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:893:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthFunc = (PFNGLDEPTHFUNCPROC)load("glDepthFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:894:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStoref = (PFNGLPIXELSTOREFPROC)load("glPixelStoref"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:895:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelStorei = (PFNGLPIXELSTOREIPROC)load("glPixelStorei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:896:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadBuffer = (PFNGLREADBUFFERPROC)load("glReadBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:897:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadPixels = (PFNGLREADPIXELSPROC)load("glReadPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:898:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleanv = (PFNGLGETBOOLEANVPROC)load("glGetBooleanv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:899:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDoublev = (PFNGLGETDOUBLEVPROC)load("glGetDoublev"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:900:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetError = (PFNGLGETERRORPROC)load("glGetError"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:901:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFloatv = (PFNGLGETFLOATVPROC)load("glGetFloatv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:902:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegerv = (PFNGLGETINTEGERVPROC)load("glGetIntegerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:903:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:904:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexImage = (PFNGLGETTEXIMAGEPROC)load("glGetTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:905:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterfv = (PFNGLGETTEXPARAMETERFVPROC)load("glGetTexParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:906:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameteriv = (PFNGLGETTEXPARAMETERIVPROC)load("glGetTexParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:907:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameterfv = (PFNGLGETTEXLEVELPARAMETERFVPROC)load("glGetTexLevelParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:908:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexLevelParameteriv = (PFNGLGETTEXLEVELPARAMETERIVPROC)load("glGetTexLevelParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:909:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabled = (PFNGLISENABLEDPROC)load("glIsEnabled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:910:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDepthRange = (PFNGLDEPTHRANGEPROC)load("glDepthRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:911:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glViewport = (PFNGLVIEWPORTPROC)load("glViewport"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:912:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNewList = (PFNGLNEWLISTPROC)load("glNewList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:913:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndList = (PFNGLENDLISTPROC)load("glEndList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:914:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallList = (PFNGLCALLLISTPROC)load("glCallList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:915:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCallLists = (PFNGLCALLLISTSPROC)load("glCallLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:916:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteLists = (PFNGLDELETELISTSPROC)load("glDeleteLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:917:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenLists = (PFNGLGENLISTSPROC)load("glGenLists"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:918:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glListBase = (PFNGLLISTBASEPROC)load("glListBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:919:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBegin = (PFNGLBEGINPROC)load("glBegin"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:920:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBitmap = (PFNGLBITMAPPROC)load("glBitmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:921:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3b = (PFNGLCOLOR3BPROC)load("glColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:922:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3bv = (PFNGLCOLOR3BVPROC)load("glColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:923:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3d = (PFNGLCOLOR3DPROC)load("glColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:924:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3dv = (PFNGLCOLOR3DVPROC)load("glColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:925:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3f = (PFNGLCOLOR3FPROC)load("glColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:926:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3fv = (PFNGLCOLOR3FVPROC)load("glColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:927:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3i = (PFNGLCOLOR3IPROC)load("glColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:928:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3iv = (PFNGLCOLOR3IVPROC)load("glColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:929:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3s = (PFNGLCOLOR3SPROC)load("glColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:930:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3sv = (PFNGLCOLOR3SVPROC)load("glColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:931:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ub = (PFNGLCOLOR3UBPROC)load("glColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:932:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ubv = (PFNGLCOLOR3UBVPROC)load("glColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:933:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3ui = (PFNGLCOLOR3UIPROC)load("glColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:934:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3uiv = (PFNGLCOLOR3UIVPROC)load("glColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:935:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3us = (PFNGLCOLOR3USPROC)load("glColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:936:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor3usv = (PFNGLCOLOR3USVPROC)load("glColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:937:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4b = (PFNGLCOLOR4BPROC)load("glColor4b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:938:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4bv = (PFNGLCOLOR4BVPROC)load("glColor4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:939:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4d = (PFNGLCOLOR4DPROC)load("glColor4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:940:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4dv = (PFNGLCOLOR4DVPROC)load("glColor4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:941:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4f = (PFNGLCOLOR4FPROC)load("glColor4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:942:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4fv = (PFNGLCOLOR4FVPROC)load("glColor4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:943:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4i = (PFNGLCOLOR4IPROC)load("glColor4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:944:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4iv = (PFNGLCOLOR4IVPROC)load("glColor4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:945:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4s = (PFNGLCOLOR4SPROC)load("glColor4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:946:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4sv = (PFNGLCOLOR4SVPROC)load("glColor4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:947:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ub = (PFNGLCOLOR4UBPROC)load("glColor4ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:948:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ubv = (PFNGLCOLOR4UBVPROC)load("glColor4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:949:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4ui = (PFNGLCOLOR4UIPROC)load("glColor4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:950:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4uiv = (PFNGLCOLOR4UIVPROC)load("glColor4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:951:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4us = (PFNGLCOLOR4USPROC)load("glColor4us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:952:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColor4usv = (PFNGLCOLOR4USVPROC)load("glColor4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:953:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlag = (PFNGLEDGEFLAGPROC)load("glEdgeFlag"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:954:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagv = (PFNGLEDGEFLAGVPROC)load("glEdgeFlagv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:955:15: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnd = (PFNGLENDPROC)load("glEnd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:956:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexd = (PFNGLINDEXDPROC)load("glIndexd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:957:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexdv = (PFNGLINDEXDVPROC)load("glIndexdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:958:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexf = (PFNGLINDEXFPROC)load("glIndexf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:959:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexfv = (PFNGLINDEXFVPROC)load("glIndexfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:960:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexi = (PFNGLINDEXIPROC)load("glIndexi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:961:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexiv = (PFNGLINDEXIVPROC)load("glIndexiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:962:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexs = (PFNGLINDEXSPROC)load("glIndexs"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:963:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexsv = (PFNGLINDEXSVPROC)load("glIndexsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:964:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3b = (PFNGLNORMAL3BPROC)load("glNormal3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:965:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3bv = (PFNGLNORMAL3BVPROC)load("glNormal3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:966:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3d = (PFNGLNORMAL3DPROC)load("glNormal3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:967:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3dv = (PFNGLNORMAL3DVPROC)load("glNormal3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:968:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3f = (PFNGLNORMAL3FPROC)load("glNormal3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:969:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3fv = (PFNGLNORMAL3FVPROC)load("glNormal3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:970:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3i = (PFNGLNORMAL3IPROC)load("glNormal3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:971:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3iv = (PFNGLNORMAL3IVPROC)load("glNormal3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:972:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3s = (PFNGLNORMAL3SPROC)load("glNormal3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:973:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormal3sv = (PFNGLNORMAL3SVPROC)load("glNormal3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:974:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2d = (PFNGLRASTERPOS2DPROC)load("glRasterPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:975:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2dv = (PFNGLRASTERPOS2DVPROC)load("glRasterPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:976:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2f = (PFNGLRASTERPOS2FPROC)load("glRasterPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:977:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2fv = (PFNGLRASTERPOS2FVPROC)load("glRasterPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:978:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2i = (PFNGLRASTERPOS2IPROC)load("glRasterPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:979:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2iv = (PFNGLRASTERPOS2IVPROC)load("glRasterPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:980:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2s = (PFNGLRASTERPOS2SPROC)load("glRasterPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:981:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos2sv = (PFNGLRASTERPOS2SVPROC)load("glRasterPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:982:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3d = (PFNGLRASTERPOS3DPROC)load("glRasterPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:983:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3dv = (PFNGLRASTERPOS3DVPROC)load("glRasterPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:984:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3f = (PFNGLRASTERPOS3FPROC)load("glRasterPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:985:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3fv = (PFNGLRASTERPOS3FVPROC)load("glRasterPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:986:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3i = (PFNGLRASTERPOS3IPROC)load("glRasterPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:987:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3iv = (PFNGLRASTERPOS3IVPROC)load("glRasterPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:988:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3s = (PFNGLRASTERPOS3SPROC)load("glRasterPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:989:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos3sv = (PFNGLRASTERPOS3SVPROC)load("glRasterPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:990:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4d = (PFNGLRASTERPOS4DPROC)load("glRasterPos4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:991:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4dv = (PFNGLRASTERPOS4DVPROC)load("glRasterPos4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:992:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4f = (PFNGLRASTERPOS4FPROC)load("glRasterPos4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:993:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4fv = (PFNGLRASTERPOS4FVPROC)load("glRasterPos4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:994:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4i = (PFNGLRASTERPOS4IPROC)load("glRasterPos4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:995:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4iv = (PFNGLRASTERPOS4IVPROC)load("glRasterPos4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:996:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4s = (PFNGLRASTERPOS4SPROC)load("glRasterPos4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:997:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRasterPos4sv = (PFNGLRASTERPOS4SVPROC)load("glRasterPos4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:998:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectd = (PFNGLRECTDPROC)load("glRectd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:999:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectdv = (PFNGLRECTDVPROC)load("glRectdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1000:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectf = (PFNGLRECTFPROC)load("glRectf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1001:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectfv = (PFNGLRECTFVPROC)load("glRectfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1002:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRecti = (PFNGLRECTIPROC)load("glRecti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1003:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectiv = (PFNGLRECTIVPROC)load("glRectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1004:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRects = (PFNGLRECTSPROC)load("glRects"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1005:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRectsv = (PFNGLRECTSVPROC)load("glRectsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1006:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1d = (PFNGLTEXCOORD1DPROC)load("glTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1007:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1dv = (PFNGLTEXCOORD1DVPROC)load("glTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1008:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1f = (PFNGLTEXCOORD1FPROC)load("glTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1009:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1fv = (PFNGLTEXCOORD1FVPROC)load("glTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1010:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1i = (PFNGLTEXCOORD1IPROC)load("glTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1011:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1iv = (PFNGLTEXCOORD1IVPROC)load("glTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1012:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1s = (PFNGLTEXCOORD1SPROC)load("glTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1013:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord1sv = (PFNGLTEXCOORD1SVPROC)load("glTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1014:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2d = (PFNGLTEXCOORD2DPROC)load("glTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1015:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2dv = (PFNGLTEXCOORD2DVPROC)load("glTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1016:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2f = (PFNGLTEXCOORD2FPROC)load("glTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1017:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2fv = (PFNGLTEXCOORD2FVPROC)load("glTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1018:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2i = (PFNGLTEXCOORD2IPROC)load("glTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1019:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2iv = (PFNGLTEXCOORD2IVPROC)load("glTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1020:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2s = (PFNGLTEXCOORD2SPROC)load("glTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1021:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord2sv = (PFNGLTEXCOORD2SVPROC)load("glTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1022:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3d = (PFNGLTEXCOORD3DPROC)load("glTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1023:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3dv = (PFNGLTEXCOORD3DVPROC)load("glTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1024:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3f = (PFNGLTEXCOORD3FPROC)load("glTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1025:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3fv = (PFNGLTEXCOORD3FVPROC)load("glTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1026:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3i = (PFNGLTEXCOORD3IPROC)load("glTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1027:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3iv = (PFNGLTEXCOORD3IVPROC)load("glTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1028:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3s = (PFNGLTEXCOORD3SPROC)load("glTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1029:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord3sv = (PFNGLTEXCOORD3SVPROC)load("glTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1030:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4d = (PFNGLTEXCOORD4DPROC)load("glTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1031:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4dv = (PFNGLTEXCOORD4DVPROC)load("glTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1032:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4f = (PFNGLTEXCOORD4FPROC)load("glTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1033:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4fv = (PFNGLTEXCOORD4FVPROC)load("glTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1034:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4i = (PFNGLTEXCOORD4IPROC)load("glTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1035:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4iv = (PFNGLTEXCOORD4IVPROC)load("glTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1036:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4s = (PFNGLTEXCOORD4SPROC)load("glTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1037:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoord4sv = (PFNGLTEXCOORD4SVPROC)load("glTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1038:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2d = (PFNGLVERTEX2DPROC)load("glVertex2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1039:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2dv = (PFNGLVERTEX2DVPROC)load("glVertex2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1040:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2f = (PFNGLVERTEX2FPROC)load("glVertex2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1041:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2fv = (PFNGLVERTEX2FVPROC)load("glVertex2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1042:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2i = (PFNGLVERTEX2IPROC)load("glVertex2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1043:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2iv = (PFNGLVERTEX2IVPROC)load("glVertex2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1044:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2s = (PFNGLVERTEX2SPROC)load("glVertex2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1045:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex2sv = (PFNGLVERTEX2SVPROC)load("glVertex2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1046:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3d = (PFNGLVERTEX3DPROC)load("glVertex3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1047:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3dv = (PFNGLVERTEX3DVPROC)load("glVertex3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1048:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3f = (PFNGLVERTEX3FPROC)load("glVertex3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1049:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3fv = (PFNGLVERTEX3FVPROC)load("glVertex3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1050:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3i = (PFNGLVERTEX3IPROC)load("glVertex3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1051:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3iv = (PFNGLVERTEX3IVPROC)load("glVertex3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1052:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3s = (PFNGLVERTEX3SPROC)load("glVertex3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1053:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex3sv = (PFNGLVERTEX3SVPROC)load("glVertex3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1054:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4d = (PFNGLVERTEX4DPROC)load("glVertex4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1055:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4dv = (PFNGLVERTEX4DVPROC)load("glVertex4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1056:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4f = (PFNGLVERTEX4FPROC)load("glVertex4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1057:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4fv = (PFNGLVERTEX4FVPROC)load("glVertex4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1058:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4i = (PFNGLVERTEX4IPROC)load("glVertex4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1059:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4iv = (PFNGLVERTEX4IVPROC)load("glVertex4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1060:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4s = (PFNGLVERTEX4SPROC)load("glVertex4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1061:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertex4sv = (PFNGLVERTEX4SVPROC)load("glVertex4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1062:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClipPlane = (PFNGLCLIPPLANEPROC)load("glClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1063:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaterial = (PFNGLCOLORMATERIALPROC)load("glColorMaterial"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1064:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogf = (PFNGLFOGFPROC)load("glFogf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1065:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogfv = (PFNGLFOGFVPROC)load("glFogfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1066:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogi = (PFNGLFOGIPROC)load("glFogi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1067:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogiv = (PFNGLFOGIVPROC)load("glFogiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1068:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightf = (PFNGLLIGHTFPROC)load("glLightf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1069:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightfv = (PFNGLLIGHTFVPROC)load("glLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1070:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLighti = (PFNGLLIGHTIPROC)load("glLighti"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1071:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightiv = (PFNGLLIGHTIVPROC)load("glLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1072:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelf = (PFNGLLIGHTMODELFPROC)load("glLightModelf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1073:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModelfv = (PFNGLLIGHTMODELFVPROC)load("glLightModelfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1074:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeli = (PFNGLLIGHTMODELIPROC)load("glLightModeli"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1075:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLightModeliv = (PFNGLLIGHTMODELIVPROC)load("glLightModeliv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1076:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLineStipple = (PFNGLLINESTIPPLEPROC)load("glLineStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1077:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialf = (PFNGLMATERIALFPROC)load("glMaterialf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1078:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialfv = (PFNGLMATERIALFVPROC)load("glMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1079:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMateriali = (PFNGLMATERIALIPROC)load("glMateriali"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1080:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMaterialiv = (PFNGLMATERIALIVPROC)load("glMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1081:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonStipple = (PFNGLPOLYGONSTIPPLEPROC)load("glPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1082:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShadeModel = (PFNGLSHADEMODELPROC)load("glShadeModel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1083:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvf = (PFNGLTEXENVFPROC)load("glTexEnvf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1084:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvfv = (PFNGLTEXENVFVPROC)load("glTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1085:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnvi = (PFNGLTEXENVIPROC)load("glTexEnvi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1086:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexEnviv = (PFNGLTEXENVIVPROC)load("glTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1087:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGend = (PFNGLTEXGENDPROC)load("glTexGend"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1088:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGendv = (PFNGLTEXGENDVPROC)load("glTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1089:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenf = (PFNGLTEXGENFPROC)load("glTexGenf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1090:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGenfv = (PFNGLTEXGENFVPROC)load("glTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1091:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeni = (PFNGLTEXGENIPROC)load("glTexGeni"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1092:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexGeniv = (PFNGLTEXGENIVPROC)load("glTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1093:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFeedbackBuffer = (PFNGLFEEDBACKBUFFERPROC)load("glFeedbackBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1094:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSelectBuffer = (PFNGLSELECTBUFFERPROC)load("glSelectBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1095:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderMode = (PFNGLRENDERMODEPROC)load("glRenderMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1096:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInitNames = (PFNGLINITNAMESPROC)load("glInitNames"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1097:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadName = (PFNGLLOADNAMEPROC)load("glLoadName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1098:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPassThrough = (PFNGLPASSTHROUGHPROC)load("glPassThrough"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1099:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopName = (PFNGLPOPNAMEPROC)load("glPopName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1100:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushName = (PFNGLPUSHNAMEPROC)load("glPushName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1101:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearAccum = (PFNGLCLEARACCUMPROC)load("glClearAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1102:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearIndex = (PFNGLCLEARINDEXPROC)load("glClearIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1103:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexMask = (PFNGLINDEXMASKPROC)load("glIndexMask"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1104:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAccum = (PFNGLACCUMPROC)load("glAccum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1105:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopAttrib = (PFNGLPOPATTRIBPROC)load("glPopAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1106:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushAttrib = (PFNGLPUSHATTRIBPROC)load("glPushAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1107:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1d = (PFNGLMAP1DPROC)load("glMap1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1108:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap1f = (PFNGLMAP1FPROC)load("glMap1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1109:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2d = (PFNGLMAP2DPROC)load("glMap2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1110:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMap2f = (PFNGLMAP2FPROC)load("glMap2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1111:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1d = (PFNGLMAPGRID1DPROC)load("glMapGrid1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1112:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid1f = (PFNGLMAPGRID1FPROC)load("glMapGrid1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1113:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2d = (PFNGLMAPGRID2DPROC)load("glMapGrid2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1114:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapGrid2f = (PFNGLMAPGRID2FPROC)load("glMapGrid2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1115:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1d = (PFNGLEVALCOORD1DPROC)load("glEvalCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1116:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1dv = (PFNGLEVALCOORD1DVPROC)load("glEvalCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1117:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1f = (PFNGLEVALCOORD1FPROC)load("glEvalCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1118:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord1fv = (PFNGLEVALCOORD1FVPROC)load("glEvalCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1119:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2d = (PFNGLEVALCOORD2DPROC)load("glEvalCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1120:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2dv = (PFNGLEVALCOORD2DVPROC)load("glEvalCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1121:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2f = (PFNGLEVALCOORD2FPROC)load("glEvalCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1122:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalCoord2fv = (PFNGLEVALCOORD2FVPROC)load("glEvalCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1123:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh1 = (PFNGLEVALMESH1PROC)load("glEvalMesh1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1124:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint1 = (PFNGLEVALPOINT1PROC)load("glEvalPoint1"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1125:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalMesh2 = (PFNGLEVALMESH2PROC)load("glEvalMesh2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1126:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEvalPoint2 = (PFNGLEVALPOINT2PROC)load("glEvalPoint2"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1127:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAlphaFunc = (PFNGLALPHAFUNCPROC)load("glAlphaFunc"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1128:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelZoom = (PFNGLPIXELZOOMPROC)load("glPixelZoom"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1129:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferf = (PFNGLPIXELTRANSFERFPROC)load("glPixelTransferf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1130:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelTransferi = (PFNGLPIXELTRANSFERIPROC)load("glPixelTransferi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1131:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapfv = (PFNGLPIXELMAPFVPROC)load("glPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1132:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapuiv = (PFNGLPIXELMAPUIVPROC)load("glPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1133:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPixelMapusv = (PFNGLPIXELMAPUSVPROC)load("glPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1134:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyPixels = (PFNGLCOPYPIXELSPROC)load("glCopyPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1135:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawPixels = (PFNGLDRAWPIXELSPROC)load("glDrawPixels"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1136:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetClipPlane = (PFNGLGETCLIPPLANEPROC)load("glGetClipPlane"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1137:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightfv = (PFNGLGETLIGHTFVPROC)load("glGetLightfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1138:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetLightiv = (PFNGLGETLIGHTIVPROC)load("glGetLightiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1139:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapdv = (PFNGLGETMAPDVPROC)load("glGetMapdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1140:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapfv = (PFNGLGETMAPFVPROC)load("glGetMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1141:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMapiv = (PFNGLGETMAPIVPROC)load("glGetMapiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1142:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialfv = (PFNGLGETMATERIALFVPROC)load("glGetMaterialfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1143:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMaterialiv = (PFNGLGETMATERIALIVPROC)load("glGetMaterialiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1144:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapfv = (PFNGLGETPIXELMAPFVPROC)load("glGetPixelMapfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1145:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapuiv = (PFNGLGETPIXELMAPUIVPROC)load("glGetPixelMapuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1146:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPixelMapusv = (PFNGLGETPIXELMAPUSVPROC)load("glGetPixelMapusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1147:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPolygonStipple = (PFNGLGETPOLYGONSTIPPLEPROC)load("glGetPolygonStipple"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1148:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnvfv = (PFNGLGETTEXENVFVPROC)load("glGetTexEnvfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1149:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexEnviv = (PFNGLGETTEXENVIVPROC)load("glGetTexEnviv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1150:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGendv = (PFNGLGETTEXGENDVPROC)load("glGetTexGendv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1151:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGenfv = (PFNGLGETTEXGENFVPROC)load("glGetTexGenfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1152:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexGeniv = (PFNGLGETTEXGENIVPROC)load("glGetTexGeniv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1153:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsList = (PFNGLISLISTPROC)load("glIsList"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1154:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFrustum = (PFNGLFRUSTUMPROC)load("glFrustum"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1155:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadIdentity = (PFNGLLOADIDENTITYPROC)load("glLoadIdentity"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1156:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixf = (PFNGLLOADMATRIXFPROC)load("glLoadMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1157:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadMatrixd = (PFNGLLOADMATRIXDPROC)load("glLoadMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1158:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMatrixMode = (PFNGLMATRIXMODEPROC)load("glMatrixMode"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1159:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixf = (PFNGLMULTMATRIXFPROC)load("glMultMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1160:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultMatrixd = (PFNGLMULTMATRIXDPROC)load("glMultMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1161:17: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glOrtho = (PFNGLORTHOPROC)load("glOrtho"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1162:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopMatrix = (PFNGLPOPMATRIXPROC)load("glPopMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1163:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushMatrix = (PFNGLPUSHMATRIXPROC)load("glPushMatrix"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1164:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotated = (PFNGLROTATEDPROC)load("glRotated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1165:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRotatef = (PFNGLROTATEFPROC)load("glRotatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1166:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScaled = (PFNGLSCALEDPROC)load("glScaled"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1167:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glScalef = (PFNGLSCALEFPROC)load("glScalef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1168:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslated = (PFNGLTRANSLATEDPROC)load("glTranslated"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1169:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTranslatef = (PFNGLTRANSLATEFPROC)load("glTranslatef"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1173:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArrays = (PFNGLDRAWARRAYSPROC)load("glDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1174:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElements = (PFNGLDRAWELEMENTSPROC)load("glDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1175:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1176:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPolygonOffset = (PFNGLPOLYGONOFFSETPROC)load("glPolygonOffset"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1177:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage1D = (PFNGLCOPYTEXIMAGE1DPROC)load("glCopyTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1178:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexImage2D = (PFNGLCOPYTEXIMAGE2DPROC)load("glCopyTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1179:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage1D = (PFNGLCOPYTEXSUBIMAGE1DPROC)load("glCopyTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1180:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage2D = (PFNGLCOPYTEXSUBIMAGE2DPROC)load("glCopyTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1181:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage1D = (PFNGLTEXSUBIMAGE1DPROC)load("glTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1182:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage2D = (PFNGLTEXSUBIMAGE2DPROC)load("glTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1183:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindTexture = (PFNGLBINDTEXTUREPROC)load("glBindTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1184:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteTextures = (PFNGLDELETETEXTURESPROC)load("glDeleteTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1185:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenTextures = (PFNGLGENTEXTURESPROC)load("glGenTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1186:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsTexture = (PFNGLISTEXTUREPROC)load("glIsTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1187:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glArrayElement = (PFNGLARRAYELEMENTPROC)load("glArrayElement"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1188:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorPointer = (PFNGLCOLORPOINTERPROC)load("glColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1189:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableClientState = (PFNGLDISABLECLIENTSTATEPROC)load("glDisableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1190:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEdgeFlagPointer = (PFNGLEDGEFLAGPOINTERPROC)load("glEdgeFlagPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1191:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableClientState = (PFNGLENABLECLIENTSTATEPROC)load("glEnableClientState"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1192:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexPointer = (PFNGLINDEXPOINTERPROC)load("glIndexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1193:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glInterleavedArrays = (PFNGLINTERLEAVEDARRAYSPROC)load("glInterleavedArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1194:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glNormalPointer = (PFNGLNORMALPOINTERPROC)load("glNormalPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1195:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexCoordPointer = (PFNGLTEXCOORDPOINTERPROC)load("glTexCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1196:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexPointer = (PFNGLVERTEXPOINTERPROC)load("glVertexPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1197:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAreTexturesResident = (PFNGLARETEXTURESRESIDENTPROC)load("glAreTexturesResident"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1198:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrioritizeTextures = (PFNGLPRIORITIZETEXTURESPROC)load("glPrioritizeTextures"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1199:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexub = (PFNGLINDEXUBPROC)load("glIndexub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1200:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIndexubv = (PFNGLINDEXUBVPROC)load("glIndexubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1201:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopClientAttrib = (PFNGLPOPCLIENTATTRIBPROC)load("glPopClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1202:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushClientAttrib = (PFNGLPUSHCLIENTATTRIBPROC)load("glPushClientAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1206:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElements = (PFNGLDRAWRANGEELEMENTSPROC)load("glDrawRangeElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1207:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3D = (PFNGLTEXIMAGE3DPROC)load("glTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1208:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexSubImage3D = (PFNGLTEXSUBIMAGE3DPROC)load("glTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1209:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyTexSubImage3D = (PFNGLCOPYTEXSUBIMAGE3DPROC)load("glCopyTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_3’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1213:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glActiveTexture = (PFNGLACTIVETEXTUREPROC)load("glActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1214:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverage = (PFNGLSAMPLECOVERAGEPROC)load("glSampleCoverage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1215:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage3D = (PFNGLCOMPRESSEDTEXIMAGE3DPROC)load("glCompressedTexImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1216:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage2D = (PFNGLCOMPRESSEDTEXIMAGE2DPROC)load("glCompressedTexImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1217:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexImage1D = (PFNGLCOMPRESSEDTEXIMAGE1DPROC)load("glCompressedTexImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1218:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage3D = (PFNGLCOMPRESSEDTEXSUBIMAGE3DPROC)load("glCompressedTexSubImage3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1219:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage2D = (PFNGLCOMPRESSEDTEXSUBIMAGE2DPROC)load("glCompressedTexSubImage2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1220:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompressedTexSubImage1D = (PFNGLCOMPRESSEDTEXSUBIMAGE1DPROC)load("glCompressedTexSubImage1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1221:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetCompressedTexImage = (PFNGLGETCOMPRESSEDTEXIMAGEPROC)load("glGetCompressedTexImage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1222:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientActiveTexture = (PFNGLCLIENTACTIVETEXTUREPROC)load("glClientActiveTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1223:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1d = (PFNGLMULTITEXCOORD1DPROC)load("glMultiTexCoord1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1224:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1dv = (PFNGLMULTITEXCOORD1DVPROC)load("glMultiTexCoord1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1225:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1f = (PFNGLMULTITEXCOORD1FPROC)load("glMultiTexCoord1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1226:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1fv = (PFNGLMULTITEXCOORD1FVPROC)load("glMultiTexCoord1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1227:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1i = (PFNGLMULTITEXCOORD1IPROC)load("glMultiTexCoord1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1228:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1iv = (PFNGLMULTITEXCOORD1IVPROC)load("glMultiTexCoord1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1229:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1s = (PFNGLMULTITEXCOORD1SPROC)load("glMultiTexCoord1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1230:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord1sv = (PFNGLMULTITEXCOORD1SVPROC)load("glMultiTexCoord1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1231:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2d = (PFNGLMULTITEXCOORD2DPROC)load("glMultiTexCoord2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1232:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2dv = (PFNGLMULTITEXCOORD2DVPROC)load("glMultiTexCoord2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1233:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2f = (PFNGLMULTITEXCOORD2FPROC)load("glMultiTexCoord2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1234:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2fv = (PFNGLMULTITEXCOORD2FVPROC)load("glMultiTexCoord2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1235:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2i = (PFNGLMULTITEXCOORD2IPROC)load("glMultiTexCoord2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1236:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2iv = (PFNGLMULTITEXCOORD2IVPROC)load("glMultiTexCoord2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1237:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2s = (PFNGLMULTITEXCOORD2SPROC)load("glMultiTexCoord2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1238:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord2sv = (PFNGLMULTITEXCOORD2SVPROC)load("glMultiTexCoord2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1239:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3d = (PFNGLMULTITEXCOORD3DPROC)load("glMultiTexCoord3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1240:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3dv = (PFNGLMULTITEXCOORD3DVPROC)load("glMultiTexCoord3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1241:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3f = (PFNGLMULTITEXCOORD3FPROC)load("glMultiTexCoord3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1242:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3fv = (PFNGLMULTITEXCOORD3FVPROC)load("glMultiTexCoord3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1243:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3i = (PFNGLMULTITEXCOORD3IPROC)load("glMultiTexCoord3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1244:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3iv = (PFNGLMULTITEXCOORD3IVPROC)load("glMultiTexCoord3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1245:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3s = (PFNGLMULTITEXCOORD3SPROC)load("glMultiTexCoord3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1246:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord3sv = (PFNGLMULTITEXCOORD3SVPROC)load("glMultiTexCoord3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1247:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4d = (PFNGLMULTITEXCOORD4DPROC)load("glMultiTexCoord4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1248:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4dv = (PFNGLMULTITEXCOORD4DVPROC)load("glMultiTexCoord4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1249:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4f = (PFNGLMULTITEXCOORD4FPROC)load("glMultiTexCoord4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1250:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4fv = (PFNGLMULTITEXCOORD4FVPROC)load("glMultiTexCoord4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1251:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4i = (PFNGLMULTITEXCOORD4IPROC)load("glMultiTexCoord4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1252:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4iv = (PFNGLMULTITEXCOORD4IVPROC)load("glMultiTexCoord4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1253:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4s = (PFNGLMULTITEXCOORD4SPROC)load("glMultiTexCoord4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1254:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiTexCoord4sv = (PFNGLMULTITEXCOORD4SVPROC)load("glMultiTexCoord4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1255:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixf = (PFNGLLOADTRANSPOSEMATRIXFPROC)load("glLoadTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1256:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLoadTransposeMatrixd = (PFNGLLOADTRANSPOSEMATRIXDPROC)load("glLoadTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1257:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixf = (PFNGLMULTTRANSPOSEMATRIXFPROC)load("glMultTransposeMatrixf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1258:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultTransposeMatrixd = (PFNGLMULTTRANSPOSEMATRIXDPROC)load("glMultTransposeMatrixd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_4’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1262:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendFuncSeparate = (PFNGLBLENDFUNCSEPARATEPROC)load("glBlendFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1263:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawArrays = (PFNGLMULTIDRAWARRAYSPROC)load("glMultiDrawArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1264:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElements = (PFNGLMULTIDRAWELEMENTSPROC)load("glMultiDrawElements"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1265:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterf = (PFNGLPOINTPARAMETERFPROC)load("glPointParameterf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1266:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameterfv = (PFNGLPOINTPARAMETERFVPROC)load("glPointParameterfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1267:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteri = (PFNGLPOINTPARAMETERIPROC)load("glPointParameteri"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1268:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPointParameteriv = (PFNGLPOINTPARAMETERIVPROC)load("glPointParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1269:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordf = (PFNGLFOGCOORDFPROC)load("glFogCoordf"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1270:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordfv = (PFNGLFOGCOORDFVPROC)load("glFogCoordfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1271:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordd = (PFNGLFOGCOORDDPROC)load("glFogCoordd"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1272:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoorddv = (PFNGLFOGCOORDDVPROC)load("glFogCoorddv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1273:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFogCoordPointer = (PFNGLFOGCOORDPOINTERPROC)load("glFogCoordPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1274:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3b = (PFNGLSECONDARYCOLOR3BPROC)load("glSecondaryColor3b"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1275:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3bv = (PFNGLSECONDARYCOLOR3BVPROC)load("glSecondaryColor3bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1276:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3d = (PFNGLSECONDARYCOLOR3DPROC)load("glSecondaryColor3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1277:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3dv = (PFNGLSECONDARYCOLOR3DVPROC)load("glSecondaryColor3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1278:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3f = (PFNGLSECONDARYCOLOR3FPROC)load("glSecondaryColor3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1279:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3fv = (PFNGLSECONDARYCOLOR3FVPROC)load("glSecondaryColor3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1280:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3i = (PFNGLSECONDARYCOLOR3IPROC)load("glSecondaryColor3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1281:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3iv = (PFNGLSECONDARYCOLOR3IVPROC)load("glSecondaryColor3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1282:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3s = (PFNGLSECONDARYCOLOR3SPROC)load("glSecondaryColor3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1283:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3sv = (PFNGLSECONDARYCOLOR3SVPROC)load("glSecondaryColor3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1284:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ub = (PFNGLSECONDARYCOLOR3UBPROC)load("glSecondaryColor3ub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1285:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ubv = (PFNGLSECONDARYCOLOR3UBVPROC)load("glSecondaryColor3ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1286:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3ui = (PFNGLSECONDARYCOLOR3UIPROC)load("glSecondaryColor3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1287:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3uiv = (PFNGLSECONDARYCOLOR3UIVPROC)load("glSecondaryColor3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1288:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3us = (PFNGLSECONDARYCOLOR3USPROC)load("glSecondaryColor3us"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1289:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColor3usv = (PFNGLSECONDARYCOLOR3USVPROC)load("glSecondaryColor3usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1290:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSecondaryColorPointer = (PFNGLSECONDARYCOLORPOINTERPROC)load("glSecondaryColorPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1291:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2d = (PFNGLWINDOWPOS2DPROC)load("glWindowPos2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1292:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2dv = (PFNGLWINDOWPOS2DVPROC)load("glWindowPos2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1293:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2f = (PFNGLWINDOWPOS2FPROC)load("glWindowPos2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1294:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2fv = (PFNGLWINDOWPOS2FVPROC)load("glWindowPos2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1295:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2i = (PFNGLWINDOWPOS2IPROC)load("glWindowPos2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1296:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2iv = (PFNGLWINDOWPOS2IVPROC)load("glWindowPos2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1297:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2s = (PFNGLWINDOWPOS2SPROC)load("glWindowPos2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1298:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos2sv = (PFNGLWINDOWPOS2SVPROC)load("glWindowPos2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1299:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3d = (PFNGLWINDOWPOS3DPROC)load("glWindowPos3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1300:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3dv = (PFNGLWINDOWPOS3DVPROC)load("glWindowPos3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1301:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3f = (PFNGLWINDOWPOS3FPROC)load("glWindowPos3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1302:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3fv = (PFNGLWINDOWPOS3FVPROC)load("glWindowPos3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1303:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3i = (PFNGLWINDOWPOS3IPROC)load("glWindowPos3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1304:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3iv = (PFNGLWINDOWPOS3IVPROC)load("glWindowPos3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1305:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3s = (PFNGLWINDOWPOS3SPROC)load("glWindowPos3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1306:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWindowPos3sv = (PFNGLWINDOWPOS3SVPROC)load("glWindowPos3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1307:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendColor = (PFNGLBLENDCOLORPROC)load("glBlendColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1308:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquation = (PFNGLBLENDEQUATIONPROC)load("glBlendEquation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_1_5’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1312:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenQueries = (PFNGLGENQUERIESPROC)load("glGenQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1313:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteQueries = (PFNGLDELETEQUERIESPROC)load("glDeleteQueries"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1314:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsQuery = (PFNGLISQUERYPROC)load("glIsQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1315:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginQuery = (PFNGLBEGINQUERYPROC)load("glBeginQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1316:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndQuery = (PFNGLENDQUERYPROC)load("glEndQuery"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1317:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryiv = (PFNGLGETQUERYIVPROC)load("glGetQueryiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1318:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectiv = (PFNGLGETQUERYOBJECTIVPROC)load("glGetQueryObjectiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1319:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetQueryObjectuiv = (PFNGLGETQUERYOBJECTUIVPROC)load("glGetQueryObjectuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1320:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBuffer = (PFNGLBINDBUFFERPROC)load("glBindBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1321:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteBuffers = (PFNGLDELETEBUFFERSPROC)load("glDeleteBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1322:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenBuffers = (PFNGLGENBUFFERSPROC)load("glGenBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1323:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsBuffer = (PFNGLISBUFFERPROC)load("glIsBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1324:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferData = (PFNGLBUFFERDATAPROC)load("glBufferData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1325:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBufferSubData = (PFNGLBUFFERSUBDATAPROC)load("glBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1326:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferSubData = (PFNGLGETBUFFERSUBDATAPROC)load("glGetBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1327:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBuffer = (PFNGLMAPBUFFERPROC)load("glMapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1328:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUnmapBuffer = (PFNGLUNMAPBUFFERPROC)load("glUnmapBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1329:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteriv = (PFNGLGETBUFFERPARAMETERIVPROC)load("glGetBufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1330:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferPointerv = (PFNGLGETBUFFERPOINTERVPROC)load("glGetBufferPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1334:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlendEquationSeparate = (PFNGLBLENDEQUATIONSEPARATEPROC)load("glBlendEquationSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1335:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawBuffers = (PFNGLDRAWBUFFERSPROC)load("glDrawBuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1336:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilOpSeparate = (PFNGLSTENCILOPSEPARATEPROC)load("glStencilOpSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1337:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilFuncSeparate = (PFNGLSTENCILFUNCSEPARATEPROC)load("glStencilFuncSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1338:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glStencilMaskSeparate = (PFNGLSTENCILMASKSEPARATEPROC)load("glStencilMaskSeparate"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1339:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glAttachShader = (PFNGLATTACHSHADERPROC)load("glAttachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1340:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindAttribLocation = (PFNGLBINDATTRIBLOCATIONPROC)load("glBindAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1341:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCompileShader = (PFNGLCOMPILESHADERPROC)load("glCompileShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1342:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateProgram = (PFNGLCREATEPROGRAMPROC)load("glCreateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1343:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCreateShader = (PFNGLCREATESHADERPROC)load("glCreateShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1344:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteProgram = (PFNGLDELETEPROGRAMPROC)load("glDeleteProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1345:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteShader = (PFNGLDELETESHADERPROC)load("glDeleteShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1346:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDetachShader = (PFNGLDETACHSHADERPROC)load("glDetachShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1347:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisableVertexAttribArray = (PFNGLDISABLEVERTEXATTRIBARRAYPROC)load("glDisableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1348:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnableVertexAttribArray = (PFNGLENABLEVERTEXATTRIBARRAYPROC)load("glEnableVertexAttribArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1349:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveAttrib = (PFNGLGETACTIVEATTRIBPROC)load("glGetActiveAttrib"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1350:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniform = (PFNGLGETACTIVEUNIFORMPROC)load("glGetActiveUniform"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1351:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttachedShaders = (PFNGLGETATTACHEDSHADERSPROC)load("glGetAttachedShaders"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1352:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetAttribLocation = (PFNGLGETATTRIBLOCATIONPROC)load("glGetAttribLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1353:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramiv = (PFNGLGETPROGRAMIVPROC)load("glGetProgramiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1354:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetProgramInfoLog = (PFNGLGETPROGRAMINFOLOGPROC)load("glGetProgramInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1355:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderiv = (PFNGLGETSHADERIVPROC)load("glGetShaderiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1356:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderInfoLog = (PFNGLGETSHADERINFOLOGPROC)load("glGetShaderInfoLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1357:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetShaderSource = (PFNGLGETSHADERSOURCEPROC)load("glGetShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1358:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformLocation = (PFNGLGETUNIFORMLOCATIONPROC)load("glGetUniformLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1359:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformfv = (PFNGLGETUNIFORMFVPROC)load("glGetUniformfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1360:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformiv = (PFNGLGETUNIFORMIVPROC)load("glGetUniformiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1361:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribdv = (PFNGLGETVERTEXATTRIBDVPROC)load("glGetVertexAttribdv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1362:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribfv = (PFNGLGETVERTEXATTRIBFVPROC)load("glGetVertexAttribfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1363:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribiv = (PFNGLGETVERTEXATTRIBIVPROC)load("glGetVertexAttribiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1364:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribPointerv = (PFNGLGETVERTEXATTRIBPOINTERVPROC)load("glGetVertexAttribPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1365:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsProgram = (PFNGLISPROGRAMPROC)load("glIsProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1366:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsShader = (PFNGLISSHADERPROC)load("glIsShader"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1367:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glLinkProgram = (PFNGLLINKPROGRAMPROC)load("glLinkProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1368:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glShaderSource = (PFNGLSHADERSOURCEPROC)load("glShaderSource"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1369:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUseProgram = (PFNGLUSEPROGRAMPROC)load("glUseProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1370:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1f = (PFNGLUNIFORM1FPROC)load("glUniform1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1371:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2f = (PFNGLUNIFORM2FPROC)load("glUniform2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1372:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3f = (PFNGLUNIFORM3FPROC)load("glUniform3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1373:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4f = (PFNGLUNIFORM4FPROC)load("glUniform4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1374:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1i = (PFNGLUNIFORM1IPROC)load("glUniform1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1375:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2i = (PFNGLUNIFORM2IPROC)load("glUniform2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1376:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3i = (PFNGLUNIFORM3IPROC)load("glUniform3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1377:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4i = (PFNGLUNIFORM4IPROC)load("glUniform4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1378:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1fv = (PFNGLUNIFORM1FVPROC)load("glUniform1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1379:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2fv = (PFNGLUNIFORM2FVPROC)load("glUniform2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1380:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3fv = (PFNGLUNIFORM3FVPROC)load("glUniform3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1381:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4fv = (PFNGLUNIFORM4FVPROC)load("glUniform4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1382:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1iv = (PFNGLUNIFORM1IVPROC)load("glUniform1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1383:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2iv = (PFNGLUNIFORM2IVPROC)load("glUniform2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1384:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3iv = (PFNGLUNIFORM3IVPROC)load("glUniform3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1385:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4iv = (PFNGLUNIFORM4IVPROC)load("glUniform4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1386:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2fv = (PFNGLUNIFORMMATRIX2FVPROC)load("glUniformMatrix2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1387:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3fv = (PFNGLUNIFORMMATRIX3FVPROC)load("glUniformMatrix3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1388:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4fv = (PFNGLUNIFORMMATRIX4FVPROC)load("glUniformMatrix4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1389:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glValidateProgram = (PFNGLVALIDATEPROGRAMPROC)load("glValidateProgram"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1390:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1d = (PFNGLVERTEXATTRIB1DPROC)load("glVertexAttrib1d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1391:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1dv = (PFNGLVERTEXATTRIB1DVPROC)load("glVertexAttrib1dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1392:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1f = (PFNGLVERTEXATTRIB1FPROC)load("glVertexAttrib1f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1393:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1fv = (PFNGLVERTEXATTRIB1FVPROC)load("glVertexAttrib1fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1394:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1s = (PFNGLVERTEXATTRIB1SPROC)load("glVertexAttrib1s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1395:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib1sv = (PFNGLVERTEXATTRIB1SVPROC)load("glVertexAttrib1sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1396:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2d = (PFNGLVERTEXATTRIB2DPROC)load("glVertexAttrib2d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1397:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2dv = (PFNGLVERTEXATTRIB2DVPROC)load("glVertexAttrib2dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1398:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2f = (PFNGLVERTEXATTRIB2FPROC)load("glVertexAttrib2f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1399:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2fv = (PFNGLVERTEXATTRIB2FVPROC)load("glVertexAttrib2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1400:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2s = (PFNGLVERTEXATTRIB2SPROC)load("glVertexAttrib2s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1401:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib2sv = (PFNGLVERTEXATTRIB2SVPROC)load("glVertexAttrib2sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1402:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3d = (PFNGLVERTEXATTRIB3DPROC)load("glVertexAttrib3d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1403:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3dv = (PFNGLVERTEXATTRIB3DVPROC)load("glVertexAttrib3dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1404:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3f = (PFNGLVERTEXATTRIB3FPROC)load("glVertexAttrib3f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1405:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3fv = (PFNGLVERTEXATTRIB3FVPROC)load("glVertexAttrib3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1406:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3s = (PFNGLVERTEXATTRIB3SPROC)load("glVertexAttrib3s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1407:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib3sv = (PFNGLVERTEXATTRIB3SVPROC)load("glVertexAttrib3sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1408:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nbv = (PFNGLVERTEXATTRIB4NBVPROC)load("glVertexAttrib4Nbv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1409:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Niv = (PFNGLVERTEXATTRIB4NIVPROC)load("glVertexAttrib4Niv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1410:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nsv = (PFNGLVERTEXATTRIB4NSVPROC)load("glVertexAttrib4Nsv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1411:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nub = (PFNGLVERTEXATTRIB4NUBPROC)load("glVertexAttrib4Nub"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1412:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nubv = (PFNGLVERTEXATTRIB4NUBVPROC)load("glVertexAttrib4Nubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1413:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nuiv = (PFNGLVERTEXATTRIB4NUIVPROC)load("glVertexAttrib4Nuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1414:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4Nusv = (PFNGLVERTEXATTRIB4NUSVPROC)load("glVertexAttrib4Nusv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1415:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4bv = (PFNGLVERTEXATTRIB4BVPROC)load("glVertexAttrib4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1416:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4d = (PFNGLVERTEXATTRIB4DPROC)load("glVertexAttrib4d"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1417:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4dv = (PFNGLVERTEXATTRIB4DVPROC)load("glVertexAttrib4dv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1418:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4f = (PFNGLVERTEXATTRIB4FPROC)load("glVertexAttrib4f"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1419:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4fv = (PFNGLVERTEXATTRIB4FVPROC)load("glVertexAttrib4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1420:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4iv = (PFNGLVERTEXATTRIB4IVPROC)load("glVertexAttrib4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1421:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4s = (PFNGLVERTEXATTRIB4SPROC)load("glVertexAttrib4s"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1422:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4sv = (PFNGLVERTEXATTRIB4SVPROC)load("glVertexAttrib4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1423:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4ubv = (PFNGLVERTEXATTRIB4UBVPROC)load("glVertexAttrib4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1424:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4uiv = (PFNGLVERTEXATTRIB4UIVPROC)load("glVertexAttrib4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1425:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttrib4usv = (PFNGLVERTEXATTRIB4USVPROC)load("glVertexAttrib4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1426:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribPointer = (PFNGLVERTEXATTRIBPOINTERPROC)load("glVertexAttribPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_2_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1430:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x3fv = (PFNGLUNIFORMMATRIX2X3FVPROC)load("glUniformMatrix2x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1431:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x2fv = (PFNGLUNIFORMMATRIX3X2FVPROC)load("glUniformMatrix3x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1432:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix2x4fv = (PFNGLUNIFORMMATRIX2X4FVPROC)load("glUniformMatrix2x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1433:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x2fv = (PFNGLUNIFORMMATRIX4X2FVPROC)load("glUniformMatrix4x2fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1434:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix3x4fv = (PFNGLUNIFORMMATRIX3X4FVPROC)load("glUniformMatrix3x4fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1435:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformMatrix4x3fv = (PFNGLUNIFORMMATRIX4X3FVPROC)load("glUniformMatrix4x3fv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_0’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1439:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glColorMaski = (PFNGLCOLORMASKIPROC)load("glColorMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1440:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBooleani_v = (PFNGLGETBOOLEANI_VPROC)load("glGetBooleani_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1441:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1442:19: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEnablei = (PFNGLENABLEIPROC)load("glEnablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1443:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDisablei = (PFNGLDISABLEIPROC)load("glDisablei"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1444:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsEnabledi = (PFNGLISENABLEDIPROC)load("glIsEnabledi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1445:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginTransformFeedback = (PFNGLBEGINTRANSFORMFEEDBACKPROC)load("glBeginTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1446:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndTransformFeedback = (PFNGLENDTRANSFORMFEEDBACKPROC)load("glEndTransformFeedback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1447:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1448:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1449:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTransformFeedbackVaryings = (PFNGLTRANSFORMFEEDBACKVARYINGSPROC)load("glTransformFeedbackVaryings"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1450:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTransformFeedbackVarying = (PFNGLGETTRANSFORMFEEDBACKVARYINGPROC)load("glGetTransformFeedbackVarying"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1451:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClampColor = (PFNGLCLAMPCOLORPROC)load("glClampColor"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1452:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBeginConditionalRender = (PFNGLBEGINCONDITIONALRENDERPROC)load("glBeginConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1453:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glEndConditionalRender = (PFNGLENDCONDITIONALRENDERPROC)load("glEndConditionalRender"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1454:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribIPointer = (PFNGLVERTEXATTRIBIPOINTERPROC)load("glVertexAttribIPointer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1455:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIiv = (PFNGLGETVERTEXATTRIBIIVPROC)load("glGetVertexAttribIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1456:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetVertexAttribIuiv = (PFNGLGETVERTEXATTRIBIUIVPROC)load("glGetVertexAttribIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1457:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1i = (PFNGLVERTEXATTRIBI1IPROC)load("glVertexAttribI1i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1458:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2i = (PFNGLVERTEXATTRIBI2IPROC)load("glVertexAttribI2i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1459:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3i = (PFNGLVERTEXATTRIBI3IPROC)load("glVertexAttribI3i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1460:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4i = (PFNGLVERTEXATTRIBI4IPROC)load("glVertexAttribI4i"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1461:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1ui = (PFNGLVERTEXATTRIBI1UIPROC)load("glVertexAttribI1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1462:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2ui = (PFNGLVERTEXATTRIBI2UIPROC)load("glVertexAttribI2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1463:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3ui = (PFNGLVERTEXATTRIBI3UIPROC)load("glVertexAttribI3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1464:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ui = (PFNGLVERTEXATTRIBI4UIPROC)load("glVertexAttribI4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1465:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1iv = (PFNGLVERTEXATTRIBI1IVPROC)load("glVertexAttribI1iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1466:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2iv = (PFNGLVERTEXATTRIBI2IVPROC)load("glVertexAttribI2iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1467:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3iv = (PFNGLVERTEXATTRIBI3IVPROC)load("glVertexAttribI3iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1468:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4iv = (PFNGLVERTEXATTRIBI4IVPROC)load("glVertexAttribI4iv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1469:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI1uiv = (PFNGLVERTEXATTRIBI1UIVPROC)load("glVertexAttribI1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1470:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI2uiv = (PFNGLVERTEXATTRIBI2UIVPROC)load("glVertexAttribI2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1471:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI3uiv = (PFNGLVERTEXATTRIBI3UIVPROC)load("glVertexAttribI3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1472:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4uiv = (PFNGLVERTEXATTRIBI4UIVPROC)load("glVertexAttribI4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1473:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4bv = (PFNGLVERTEXATTRIBI4BVPROC)load("glVertexAttribI4bv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1474:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4sv = (PFNGLVERTEXATTRIBI4SVPROC)load("glVertexAttribI4sv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1475:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4ubv = (PFNGLVERTEXATTRIBI4UBVPROC)load("glVertexAttribI4ubv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1476:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glVertexAttribI4usv = (PFNGLVERTEXATTRIBI4USVPROC)load("glVertexAttribI4usv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1477:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformuiv = (PFNGLGETUNIFORMUIVPROC)load("glGetUniformuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1478:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFragDataLocation = (PFNGLBINDFRAGDATALOCATIONPROC)load("glBindFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1479:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFragDataLocation = (PFNGLGETFRAGDATALOCATIONPROC)load("glGetFragDataLocation"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1480:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1ui = (PFNGLUNIFORM1UIPROC)load("glUniform1ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1481:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2ui = (PFNGLUNIFORM2UIPROC)load("glUniform2ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1482:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3ui = (PFNGLUNIFORM3UIPROC)load("glUniform3ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1483:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4ui = (PFNGLUNIFORM4UIPROC)load("glUniform4ui"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1484:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform1uiv = (PFNGLUNIFORM1UIVPROC)load("glUniform1uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1485:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform2uiv = (PFNGLUNIFORM2UIVPROC)load("glUniform2uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1486:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform3uiv = (PFNGLUNIFORM3UIVPROC)load("glUniform3uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1487:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniform4uiv = (PFNGLUNIFORM4UIVPROC)load("glUniform4uiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1488:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIiv = (PFNGLTEXPARAMETERIIVPROC)load("glTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1489:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexParameterIuiv = (PFNGLTEXPARAMETERIUIVPROC)load("glTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1490:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIiv = (PFNGLGETTEXPARAMETERIIVPROC)load("glGetTexParameterIiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1491:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetTexParameterIuiv = (PFNGLGETTEXPARAMETERIUIVPROC)load("glGetTexParameterIuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1492:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferiv = (PFNGLCLEARBUFFERIVPROC)load("glClearBufferiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1493:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferuiv = (PFNGLCLEARBUFFERUIVPROC)load("glClearBufferuiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1494:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfv = (PFNGLCLEARBUFFERFVPROC)load("glClearBufferfv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1495:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClearBufferfi = (PFNGLCLEARBUFFERFIPROC)load("glClearBufferfi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1496:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetStringi = (PFNGLGETSTRINGIPROC)load("glGetStringi"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1497:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsRenderbuffer = (PFNGLISRENDERBUFFERPROC)load("glIsRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1498:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindRenderbuffer = (PFNGLBINDRENDERBUFFERPROC)load("glBindRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1499:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteRenderbuffers = (PFNGLDELETERENDERBUFFERSPROC)load("glDeleteRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1500:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenRenderbuffers = (PFNGLGENRENDERBUFFERSPROC)load("glGenRenderbuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1501:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorage = (PFNGLRENDERBUFFERSTORAGEPROC)load("glRenderbufferStorage"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1502:38: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetRenderbufferParameteriv = (PFNGLGETRENDERBUFFERPARAMETERIVPROC)load("glGetRenderbufferParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1503:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsFramebuffer = (PFNGLISFRAMEBUFFERPROC)load("glIsFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1504:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindFramebuffer = (PFNGLBINDFRAMEBUFFERPROC)load("glBindFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1505:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteFramebuffers = (PFNGLDELETEFRAMEBUFFERSPROC)load("glDeleteFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1506:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenFramebuffers = (PFNGLGENFRAMEBUFFERSPROC)load("glGenFramebuffers"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1507:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCheckFramebufferStatus = (PFNGLCHECKFRAMEBUFFERSTATUSPROC)load("glCheckFramebufferStatus"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1508:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture1D = (PFNGLFRAMEBUFFERTEXTURE1DPROC)load("glFramebufferTexture1D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1509:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture2D = (PFNGLFRAMEBUFFERTEXTURE2DPROC)load("glFramebufferTexture2D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1510:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture3D = (PFNGLFRAMEBUFFERTEXTURE3DPROC)load("glFramebufferTexture3D"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1511:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferRenderbuffer = (PFNGLFRAMEBUFFERRENDERBUFFERPROC)load("glFramebufferRenderbuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1512:47: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetFramebufferAttachmentParameteriv = (PFNGLGETFRAMEBUFFERATTACHMENTPARAMETERIVPROC)load("glGetFramebufferAttachmentParameteriv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1513:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenerateMipmap = (PFNGLGENERATEMIPMAPPROC)load("glGenerateMipmap"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1514:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBlitFramebuffer = (PFNGLBLITFRAMEBUFFERPROC)load("glBlitFramebuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1515:42: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glRenderbufferStorageMultisample = (PFNGLRENDERBUFFERSTORAGEMULTISAMPLEPROC)load("glRenderbufferStorageMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1516:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTextureLayer = (PFNGLFRAMEBUFFERTEXTURELAYERPROC)load("glFramebufferTextureLayer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1517:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMapBufferRange = (PFNGLMAPBUFFERRANGEPROC)load("glMapBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1518:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFlushMappedBufferRange = (PFNGLFLUSHMAPPEDBUFFERRANGEPROC)load("glFlushMappedBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1519:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1520:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1521:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1522:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_1’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1526:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawArraysInstanced = (PFNGLDRAWARRAYSINSTANCEDPROC)load("glDrawArraysInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1527:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstanced = (PFNGLDRAWELEMENTSINSTANCEDPROC)load("glDrawElementsInstanced"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1528:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexBuffer = (PFNGLTEXBUFFERPROC)load("glTexBuffer"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1529:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPrimitiveRestartIndex = (PFNGLPRIMITIVERESTARTINDEXPROC)load("glPrimitiveRestartIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1530:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glCopyBufferSubData = (PFNGLCOPYBUFFERSUBDATAPROC)load("glCopyBufferSubData"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1531:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformIndices = (PFNGLGETUNIFORMINDICESPROC)load("glGetUniformIndices"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1532:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformsiv = (PFNGLGETACTIVEUNIFORMSIVPROC)load("glGetActiveUniformsiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1533:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformName = (PFNGLGETACTIVEUNIFORMNAMEPROC)load("glGetActiveUniformName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1534:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetUniformBlockIndex = (PFNGLGETUNIFORMBLOCKINDEXPROC)load("glGetUniformBlockIndex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1535:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockiv = (PFNGLGETACTIVEUNIFORMBLOCKIVPROC)load("glGetActiveUniformBlockiv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1536:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetActiveUniformBlockName = (PFNGLGETACTIVEUNIFORMBLOCKNAMEPROC)load("glGetActiveUniformBlockName"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1537:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glUniformBlockBinding = (PFNGLUNIFORMBLOCKBINDINGPROC)load("glUniformBlockBinding"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1538:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferRange = (PFNGLBINDBUFFERRANGEPROC)load("glBindBufferRange"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1539:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindBufferBase = (PFNGLBINDBUFFERBASEPROC)load("glBindBufferBase"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1540:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetIntegeri_v = (PFNGLGETINTEGERI_VPROC)load("glGetIntegeri_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_VERSION_3_2’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1544:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsBaseVertex = (PFNGLDRAWELEMENTSBASEVERTEXPROC)load("glDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1545:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawRangeElementsBaseVertex = (PFNGLDRAWRANGEELEMENTSBASEVERTEXPROC)load("glDrawRangeElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1546:43: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDrawElementsInstancedBaseVertex = (PFNGLDRAWELEMENTSINSTANCEDBASEVERTEXPROC)load("glDrawElementsInstancedBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1547:39: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glMultiDrawElementsBaseVertex = (PFNGLMULTIDRAWELEMENTSBASEVERTEXPROC)load("glMultiDrawElementsBaseVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1548:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glProvokingVertex = (PFNGLPROVOKINGVERTEXPROC)load("glProvokingVertex"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1549:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFenceSync = (PFNGLFENCESYNCPROC)load("glFenceSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1550:18: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsSync = (PFNGLISSYNCPROC)load("glIsSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1551:22: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteSync = (PFNGLDELETESYNCPROC)load("glDeleteSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1552:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glClientWaitSync = (PFNGLCLIENTWAITSYNCPROC)load("glClientWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1553:20: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glWaitSync = (PFNGLWAITSYNCPROC)load("glWaitSync"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1554:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64v = (PFNGLGETINTEGER64VPROC)load("glGetInteger64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1555:21: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetSynciv = (PFNGLGETSYNCIVPROC)load("glGetSynciv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1556:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetInteger64i_v = (PFNGLGETINTEGER64I_VPROC)load("glGetInteger64i_v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1557:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetBufferParameteri64v = (PFNGLGETBUFFERPARAMETERI64VPROC)load("glGetBufferParameteri64v"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1558:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glFramebufferTexture = (PFNGLFRAMEBUFFERTEXTUREPROC)load("glFramebufferTexture"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1559:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage2DMultisample = (PFNGLTEXIMAGE2DMULTISAMPLEPROC)load("glTexImage2DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1560:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glTexImage3DMultisample = (PFNGLTEXIMAGE3DMULTISAMPLEPROC)load("glTexImage3DMultisample"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1561:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetMultisamplefv = (PFNGLGETMULTISAMPLEFVPROC)load("glGetMultisamplefv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1562:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleMaski = (PFNGLSAMPLEMASKIPROC)load("glSampleMaski"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_APPLE_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1566:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArrayAPPLE = (PFNGLBINDVERTEXARRAYAPPLEPROC)load("glBindVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1567:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArraysAPPLE = (PFNGLDELETEVERTEXARRAYSAPPLEPROC)load("glDeleteVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1568:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArraysAPPLE = (PFNGLGENVERTEXARRAYSAPPLEPROC)load("glGenVertexArraysAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1569:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArrayAPPLE = (PFNGLISVERTEXARRAYAPPLEPROC)load("glIsVertexArrayAPPLE"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_multisample’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1573:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glSampleCoverageARB = (PFNGLSAMPLECOVERAGEARBPROC)load("glSampleCoverageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_robustness’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1577:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetGraphicsResetStatusARB = (PFNGLGETGRAPHICSRESETSTATUSARBPROC)load("glGetGraphicsResetStatusARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1578:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnTexImageARB = (PFNGLGETNTEXIMAGEARBPROC)load("glGetnTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1579:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glReadnPixelsARB = (PFNGLREADNPIXELSARBPROC)load("glReadnPixelsARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1580:37: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnCompressedTexImageARB = (PFNGLGETNCOMPRESSEDTEXIMAGEARBPROC)load("glGetnCompressedTexImageARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1581:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformfvARB = (PFNGLGETNUNIFORMFVARBPROC)load("glGetnUniformfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1582:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformivARB = (PFNGLGETNUNIFORMIVARBPROC)load("glGetnUniformivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1583:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformuivARB = (PFNGLGETNUNIFORMUIVARBPROC)load("glGetnUniformuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1584:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnUniformdvARB = (PFNGLGETNUNIFORMDVARBPROC)load("glGetnUniformdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1585:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapdvARB = (PFNGLGETNMAPDVARBPROC)load("glGetnMapdvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1586:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapfvARB = (PFNGLGETNMAPFVARBPROC)load("glGetnMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1587:24: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMapivARB = (PFNGLGETNMAPIVARBPROC)load("glGetnMapivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1588:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapfvARB = (PFNGLGETNPIXELMAPFVARBPROC)load("glGetnPixelMapfvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1589:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapuivARB = (PFNGLGETNPIXELMAPUIVARBPROC)load("glGetnPixelMapuivARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1590:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPixelMapusvARB = (PFNGLGETNPIXELMAPUSVARBPROC)load("glGetnPixelMapusvARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1591:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnPolygonStippleARB = (PFNGLGETNPOLYGONSTIPPLEARBPROC)load("glGetnPolygonStippleARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1592:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnColorTableARB = (PFNGLGETNCOLORTABLEARBPROC)load("glGetnColorTableARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1593:36: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnConvolutionFilterARB = (PFNGLGETNCONVOLUTIONFILTERARBPROC)load("glGetnConvolutionFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1594:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnSeparableFilterARB = (PFNGLGETNSEPARABLEFILTERARBPROC)load("glGetnSeparableFilterARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1595:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnHistogramARB = (PFNGLGETNHISTOGRAMARBPROC)load("glGetnHistogramARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1596:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetnMinmaxARB = (PFNGLGETNMINMAXARBPROC)load("glGetnMinmaxARB"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_ARB_vertex_array_object’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1600:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glBindVertexArray = (PFNGLBINDVERTEXARRAYPROC)load("glBindVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1601:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDeleteVertexArrays = (PFNGLDELETEVERTEXARRAYSPROC)load("glDeleteVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1602:27: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGenVertexArrays = (PFNGLGENVERTEXARRAYSPROC)load("glGenVertexArrays"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1603:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glIsVertexArray = (PFNGLISVERTEXARRAYPROC)load("glIsVertexArray"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘load_GL_KHR_debug’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1607:31: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControl = (PFNGLDEBUGMESSAGECONTROLPROC)load("glDebugMessageControl"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1608:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsert = (PFNGLDEBUGMESSAGEINSERTPROC)load("glDebugMessageInsert"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1609:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallback = (PFNGLDEBUGMESSAGECALLBACKPROC)load("glDebugMessageCallback"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1610:30: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLog = (PFNGLGETDEBUGMESSAGELOGPROC)load("glGetDebugMessageLog"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1611:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroup = (PFNGLPUSHDEBUGGROUPPROC)load("glPushDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1612:25: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroup = (PFNGLPOPDEBUGGROUPPROC)load("glPopDebugGroup"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1613:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabel = (PFNGLOBJECTLABELPROC)load("glObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1614:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabel = (PFNGLGETOBJECTLABELPROC)load("glGetObjectLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1615:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabel = (PFNGLOBJECTPTRLABELPROC)load("glObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1616:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabel = (PFNGLGETOBJECTPTRLABELPROC)load("glGetObjectPtrLabel"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1617:23: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointerv = (PFNGLGETPOINTERVPROC)load("glGetPointerv"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1618:34: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageControlKHR = (PFNGLDEBUGMESSAGECONTROLKHRPROC)load("glDebugMessageControlKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1619:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageInsertKHR = (PFNGLDEBUGMESSAGEINSERTKHRPROC)load("glDebugMessageInsertKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1620:35: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glDebugMessageCallbackKHR = (PFNGLDEBUGMESSAGECALLBACKKHRPROC)load("glDebugMessageCallbackKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1621:33: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetDebugMessageLogKHR = (PFNGLGETDEBUGMESSAGELOGKHRPROC)load("glGetDebugMessageLogKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1622:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPushDebugGroupKHR = (PFNGLPUSHDEBUGGROUPKHRPROC)load("glPushDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1623:28: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glPopDebugGroupKHR = (PFNGLPOPDEBUGGROUPKHRPROC)load("glPopDebugGroupKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1624:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectLabelKHR = (PFNGLOBJECTLABELKHRPROC)load("glObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1625:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectLabelKHR = (PFNGLGETOBJECTLABELKHRPROC)load("glGetObjectLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1626:29: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glObjectPtrLabelKHR = (PFNGLOBJECTPTRLABELKHRPROC)load("glObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1627:32: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetObjectPtrLabelKHR = (PFNGLGETOBJECTPTRLABELKHRPROC)load("glGetObjectPtrLabelKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1628:26: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glad_glGetPointervKHR = (PFNGLGETPOINTERVKHRPROC)load("glGetPointervKHR"); ^ /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c: In function ‘gladLoadGLLoader’: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glad/glad.c:1696:16: warning: ISO C forbids conversion of object pointer to function pointer type [-Wpedantic] glGetString = (PFNGLGETSTRINGPROC)load("glGetString"); ^ [100%] Linking CXX executable rs-benchmark-framos cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/benchmark && /usr/bin/cmake -E cmake_link_script CMakeFiles/rs-benchmark.dir/link.txt --verbose=1 ccache /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -pedantic -g -Wno-missing-field-initializers -Wno-switch -Wno-multichar -Wsequence-point -Wformat -Wformat-security -mssse3 -pthread -std=c++11 -rdynamic CMakeFiles/rs-benchmark.dir/rs-benchmark.cpp.o CMakeFiles/rs-benchmark.dir/__/__/third-party/glad/glad.c.o -o rs-benchmark-framos -Wl,-rpath,/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl:/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu:/usr/lib/framos/camerasuite:/usr/lib/framos/camerasuite/local: ../../third-party/glfw/src/libglfw3.a -lGL -lGLU ../../src/gl/librealsense2-framos-gl.so.2.29.8 -lrt -lm -ldl -lX11 ../../librealsense2-framos.so.2.29.8 /usr/lib/framos/camerasuite/libCameraSuite.so /usr/lib/framos/camerasuite/local/libGenApi_gcc421_v3_0.so make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [100%] Built target rs-benchmark make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles 0 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' debian/rules override_dh_auto_test make[1]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. echo -- Running tests. Even if one of them fails the build is not canceled. -- Running tests. Even if one of them fails the build is not canceled. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_test || true make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' fakeroot debian/rules binary dh binary -v --buildsystem=cmake dh_testroot -O-v -O--buildsystem=cmake dh_prep -O-v -O--buildsystem=cmake rm -f -- debian/ros-melodic-librealsense2-framos.substvars rm -fr -- debian/.debhelper/generated/ros-melodic-librealsense2-framos/ debian/ros-melodic-librealsense2-framos/ debian/tmp/ dh_installdirs -O-v -O--buildsystem=cmake install -d debian/ros-melodic-librealsense2-framos debian/rules override_dh_auto_install make[1]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_auto_install cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos AM_UPDATE_INFO_DIR=no make[2]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 -B/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles/progress.marks make -f CMakeFiles/Makefile2 all make[3]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/libtm/fw/CMakeFiles/fw.dir/build.make third-party/libtm/fw/CMakeFiles/fw.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/fw/CMakeFiles/fw.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/libtm/fw/CMakeFiles/fw.dir/build.make third-party/libtm/fw/CMakeFiles/fw.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'third-party/libtm/fw/CMakeFiles/fw.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 1%] Built target fw make -f third-party/libtm/libtm/src/CMakeFiles/tm.dir/build.make third-party/libtm/libtm/src/CMakeFiles/tm.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/libtm/libtm/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/libtm/libtm/src/CMakeFiles/tm.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/libtm/libtm/src/CMakeFiles/tm.dir/build.make third-party/libtm/libtm/src/CMakeFiles/tm.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'third-party/libtm/libtm/src/CMakeFiles/tm.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 6%] Built target tm make -f third-party/realsense-file/CMakeFiles/realsense-file.dir/build.make third-party/realsense-file/CMakeFiles/realsense-file.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/realsense-file /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/realsense-file/CMakeFiles/realsense-file.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/realsense-file/CMakeFiles/realsense-file.dir/build.make third-party/realsense-file/CMakeFiles/realsense-file.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'third-party/realsense-file/CMakeFiles/realsense-file.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 13%] Built target realsense-file make -f CMakeFiles/realsense2-framos.dir/build.make CMakeFiles/realsense2-framos.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles/realsense2-framos.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f CMakeFiles/realsense2-framos.dir/build.make CMakeFiles/realsense2-framos.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'CMakeFiles/realsense2-framos.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 45%] Built target realsense2-framos make -f third-party/glfw/src/CMakeFiles/glfw.dir/build.make third-party/glfw/src/CMakeFiles/glfw.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party/glfw/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/third-party/glfw/src/CMakeFiles/glfw.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f third-party/glfw/src/CMakeFiles/glfw.dir/build.make third-party/glfw/src/CMakeFiles/glfw.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'third-party/glfw/src/CMakeFiles/glfw.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 51%] Built target glfw make -f src/gl/CMakeFiles/realsense2-framos-gl.dir/build.make src/gl/CMakeFiles/realsense2-framos-gl.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/src/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/src/gl/CMakeFiles/realsense2-framos-gl.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f src/gl/CMakeFiles/realsense2-framos-gl.dir/build.make src/gl/CMakeFiles/realsense2-framos-gl.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'src/gl/CMakeFiles/realsense2-framos-gl.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 56%] Built target realsense2-framos-gl make -f examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/build.make examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/hello-realsense /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/hello-realsense /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/build.make examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/hello-realsense/CMakeFiles/rs-hello-realsense.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 56%] Built target rs-hello-realsense make -f examples/software-device/CMakeFiles/rs-software-device.dir/build.make examples/software-device/CMakeFiles/rs-software-device.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-device /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-device /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-device/CMakeFiles/rs-software-device.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/software-device/CMakeFiles/rs-software-device.dir/build.make examples/software-device/CMakeFiles/rs-software-device.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/software-device/CMakeFiles/rs-software-device.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 57%] Built target rs-software-device make -f examples/capture/CMakeFiles/rs-capture.dir/build.make examples/capture/CMakeFiles/rs-capture.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/capture /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/capture /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/capture/CMakeFiles/rs-capture.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/capture/CMakeFiles/rs-capture.dir/build.make examples/capture/CMakeFiles/rs-capture.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/capture/CMakeFiles/rs-capture.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Built target rs-capture make -f examples/callback/CMakeFiles/rs-callback.dir/build.make examples/callback/CMakeFiles/rs-callback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/callback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/callback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/callback/CMakeFiles/rs-callback.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/callback/CMakeFiles/rs-callback.dir/build.make examples/callback/CMakeFiles/rs-callback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/callback/CMakeFiles/rs-callback.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Built target rs-callback make -f examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/build.make examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/save-to-disk /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/save-to-disk /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/build.make examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/save-to-disk/CMakeFiles/rs-save-to-disk.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 58%] Built target rs-save-to-disk make -f examples/multicam/CMakeFiles/rs-multicam.dir/build.make examples/multicam/CMakeFiles/rs-multicam.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/multicam /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/multicam /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/multicam/CMakeFiles/rs-multicam.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/multicam/CMakeFiles/rs-multicam.dir/build.make examples/multicam/CMakeFiles/rs-multicam.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/multicam/CMakeFiles/rs-multicam.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 59%] Built target rs-multicam make -f examples/pointcloud/CMakeFiles/rs-pointcloud.dir/build.make examples/pointcloud/CMakeFiles/rs-pointcloud.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pointcloud /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pointcloud /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pointcloud/CMakeFiles/rs-pointcloud.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pointcloud/CMakeFiles/rs-pointcloud.dir/build.make examples/pointcloud/CMakeFiles/rs-pointcloud.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/pointcloud/CMakeFiles/rs-pointcloud.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 59%] Built target rs-pointcloud make -f examples/align/CMakeFiles/rs-align.dir/build.make examples/align/CMakeFiles/rs-align.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align/CMakeFiles/rs-align.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/align/CMakeFiles/rs-align.dir/build.make examples/align/CMakeFiles/rs-align.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/align/CMakeFiles/rs-align.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 61%] Built target rs-align make -f examples/align-advanced/CMakeFiles/rs-align-advanced.dir/build.make examples/align-advanced/CMakeFiles/rs-align-advanced.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/align-advanced /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/align-advanced/CMakeFiles/rs-align-advanced.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/align-advanced/CMakeFiles/rs-align-advanced.dir/build.make examples/align-advanced/CMakeFiles/rs-align-advanced.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/align-advanced/CMakeFiles/rs-align-advanced.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 62%] Built target rs-align-advanced make -f examples/sensor-control/CMakeFiles/rs-sensor-control.dir/build.make examples/sensor-control/CMakeFiles/rs-sensor-control.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/sensor-control /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/sensor-control /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/sensor-control/CMakeFiles/rs-sensor-control.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/sensor-control/CMakeFiles/rs-sensor-control.dir/build.make examples/sensor-control/CMakeFiles/rs-sensor-control.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/sensor-control/CMakeFiles/rs-sensor-control.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 63%] Built target rs-sensor-control make -f examples/measure/CMakeFiles/rs-measure.dir/build.make examples/measure/CMakeFiles/rs-measure.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/measure /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/measure /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/measure/CMakeFiles/rs-measure.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/measure/CMakeFiles/rs-measure.dir/build.make examples/measure/CMakeFiles/rs-measure.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/measure/CMakeFiles/rs-measure.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 64%] Built target rs-measure make -f examples/C/depth/CMakeFiles/rs-depth.dir/build.make examples/C/depth/CMakeFiles/rs-depth.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/depth/CMakeFiles/rs-depth.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/C/depth/CMakeFiles/rs-depth.dir/build.make examples/C/depth/CMakeFiles/rs-depth.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/C/depth/CMakeFiles/rs-depth.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 65%] Built target rs-depth make -f examples/C/color/CMakeFiles/rs-color.dir/build.make examples/C/color/CMakeFiles/rs-color.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/color /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/color /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/color/CMakeFiles/rs-color.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/C/color/CMakeFiles/rs-color.dir/build.make examples/C/color/CMakeFiles/rs-color.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/C/color/CMakeFiles/rs-color.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 66%] Built target rs-color make -f examples/C/distance/CMakeFiles/rs-distance.dir/build.make examples/C/distance/CMakeFiles/rs-distance.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/C/distance /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/distance /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/C/distance/CMakeFiles/rs-distance.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/C/distance/CMakeFiles/rs-distance.dir/build.make examples/C/distance/CMakeFiles/rs-distance.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/C/distance/CMakeFiles/rs-distance.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 66%] Built target rs-distance make -f examples/post-processing/CMakeFiles/rs-post-processing.dir/build.make examples/post-processing/CMakeFiles/rs-post-processing.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/post-processing /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/post-processing/CMakeFiles/rs-post-processing.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/post-processing/CMakeFiles/rs-post-processing.dir/build.make examples/post-processing/CMakeFiles/rs-post-processing.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/post-processing/CMakeFiles/rs-post-processing.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 68%] Built target rs-post-processing make -f examples/record-playback/CMakeFiles/rs-record-playback.dir/build.make examples/record-playback/CMakeFiles/rs-record-playback.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/record-playback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/record-playback/CMakeFiles/rs-record-playback.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/record-playback/CMakeFiles/rs-record-playback.dir/build.make examples/record-playback/CMakeFiles/rs-record-playback.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/record-playback/CMakeFiles/rs-record-playback.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 70%] Built target rs-record-playback make -f examples/motion/CMakeFiles/rs-motion.dir/build.make examples/motion/CMakeFiles/rs-motion.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/motion /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/motion /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/motion/CMakeFiles/rs-motion.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/motion/CMakeFiles/rs-motion.dir/build.make examples/motion/CMakeFiles/rs-motion.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/motion/CMakeFiles/rs-motion.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 71%] Built target rs-motion make -f examples/gl/CMakeFiles/rs-gl.dir/build.make examples/gl/CMakeFiles/rs-gl.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/gl /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/gl/CMakeFiles/rs-gl.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/gl/CMakeFiles/rs-gl.dir/build.make examples/gl/CMakeFiles/rs-gl.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/gl/CMakeFiles/rs-gl.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 72%] Built target rs-gl make -f examples/pose/CMakeFiles/rs-pose.dir/build.make examples/pose/CMakeFiles/rs-pose.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose/CMakeFiles/rs-pose.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pose/CMakeFiles/rs-pose.dir/build.make examples/pose/CMakeFiles/rs-pose.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/pose/CMakeFiles/rs-pose.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 73%] Built target rs-pose make -f examples/pose-predict/CMakeFiles/rs-pose-predict.dir/build.make examples/pose-predict/CMakeFiles/rs-pose-predict.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose-predict /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-predict /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-predict/CMakeFiles/rs-pose-predict.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pose-predict/CMakeFiles/rs-pose-predict.dir/build.make examples/pose-predict/CMakeFiles/rs-pose-predict.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/pose-predict/CMakeFiles/rs-pose-predict.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 74%] Built target rs-pose-predict make -f examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/build.make examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/pose-and-image /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-and-image /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/build.make examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/pose-and-image/CMakeFiles/rs-pose-and-image.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 74%] Built target rs-pose-and-image make -f examples/trajectory/CMakeFiles/rs-trajectory.dir/build.make examples/trajectory/CMakeFiles/rs-trajectory.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/trajectory /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/trajectory /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/trajectory/CMakeFiles/rs-trajectory.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/trajectory/CMakeFiles/rs-trajectory.dir/build.make examples/trajectory/CMakeFiles/rs-trajectory.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/trajectory/CMakeFiles/rs-trajectory.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 75%] Built target rs-trajectory make -f examples/ar-basic/CMakeFiles/rs-ar-basic.dir/build.make examples/ar-basic/CMakeFiles/rs-ar-basic.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/ar-basic /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/ar-basic /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/ar-basic/CMakeFiles/rs-ar-basic.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/ar-basic/CMakeFiles/rs-ar-basic.dir/build.make examples/ar-basic/CMakeFiles/rs-ar-basic.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/ar-basic/CMakeFiles/rs-ar-basic.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 76%] Built target rs-ar-basic make -f examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/build.make examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/tracking-and-depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/build.make examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/tracking-and-depth/CMakeFiles/rs-tracking-and-depth.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Built target rs-tracking-and-depth make -f examples/software-trigger/CMakeFiles/rs-software-trigger.dir/build.make examples/software-trigger/CMakeFiles/rs-software-trigger.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples/software-trigger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-trigger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/examples/software-trigger/CMakeFiles/rs-software-trigger.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f examples/software-trigger/CMakeFiles/rs-software-trigger.dir/build.make examples/software-trigger/CMakeFiles/rs-software-trigger.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'examples/software-trigger/CMakeFiles/rs-software-trigger.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Built target rs-software-trigger make -f tools/convert/CMakeFiles/rs-convert.dir/build.make tools/convert/CMakeFiles/rs-convert.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/convert /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/convert /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/convert/CMakeFiles/rs-convert.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/convert/CMakeFiles/rs-convert.dir/build.make tools/convert/CMakeFiles/rs-convert.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/convert/CMakeFiles/rs-convert.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 77%] Built target rs-convert make -f tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/build.make tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/enumerate-devices /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/enumerate-devices /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/build.make tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/enumerate-devices/CMakeFiles/rs-enumerate-devices.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 78%] Built target rs-enumerate-devices make -f tools/fw-logger/CMakeFiles/rs-fw-logger.dir/build.make tools/fw-logger/CMakeFiles/rs-fw-logger.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-logger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-logger/CMakeFiles/rs-fw-logger.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/fw-logger/CMakeFiles/rs-fw-logger.dir/build.make tools/fw-logger/CMakeFiles/rs-fw-logger.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/fw-logger/CMakeFiles/rs-fw-logger.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 80%] Built target rs-fw-logger make -f tools/terminal/CMakeFiles/rs-terminal.dir/build.make tools/terminal/CMakeFiles/rs-terminal.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/terminal /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/terminal /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/terminal/CMakeFiles/rs-terminal.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/terminal/CMakeFiles/rs-terminal.dir/build.make tools/terminal/CMakeFiles/rs-terminal.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/terminal/CMakeFiles/rs-terminal.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 81%] Built target rs-terminal make -f tools/recorder/CMakeFiles/rs-record.dir/build.make tools/recorder/CMakeFiles/rs-record.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/recorder /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/recorder /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/recorder/CMakeFiles/rs-record.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/recorder/CMakeFiles/rs-record.dir/build.make tools/recorder/CMakeFiles/rs-record.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/recorder/CMakeFiles/rs-record.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 81%] Built target rs-record make -f tools/fw-update/CMakeFiles/rs-fw-update.dir/build.make tools/fw-update/CMakeFiles/rs-fw-update.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/fw-update /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-update /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/fw-update/CMakeFiles/rs-fw-update.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/fw-update/CMakeFiles/rs-fw-update.dir/build.make tools/fw-update/CMakeFiles/rs-fw-update.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/fw-update/CMakeFiles/rs-fw-update.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 82%] Built target rs-fw-update make -f tools/data-collect/CMakeFiles/rs-data-collect.dir/build.make tools/data-collect/CMakeFiles/rs-data-collect.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/data-collect /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/data-collect /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/data-collect/CMakeFiles/rs-data-collect.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/data-collect/CMakeFiles/rs-data-collect.dir/build.make tools/data-collect/CMakeFiles/rs-data-collect.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/data-collect/CMakeFiles/rs-data-collect.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 83%] Built target rs-data-collect make -f common/fw/CMakeFiles/uvc_fw.dir/build.make common/fw/CMakeFiles/uvc_fw.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/common/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/common/fw/CMakeFiles/uvc_fw.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f common/fw/CMakeFiles/uvc_fw.dir/build.make common/fw/CMakeFiles/uvc_fw.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'common/fw/CMakeFiles/uvc_fw.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 85%] Built target uvc_fw make -f tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/build.make tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/realsense-viewer /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/build.make tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/realsense-viewer/CMakeFiles/realsense-viewer.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 90%] Built target realsense-viewer make -f tools/depth-quality/CMakeFiles/rs-depth-quality.dir/build.make tools/depth-quality/CMakeFiles/rs-depth-quality.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/depth-quality /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/depth-quality/CMakeFiles/rs-depth-quality.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/depth-quality/CMakeFiles/rs-depth-quality.dir/build.make tools/depth-quality/CMakeFiles/rs-depth-quality.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/depth-quality/CMakeFiles/rs-depth-quality.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 96%] Built target rs-depth-quality make -f tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/build.make tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/rosbag-inspector /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/build.make tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/rosbag-inspector/CMakeFiles/rs-rosbag-inspector.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [ 99%] Built target rs-rosbag-inspector make -f tools/benchmark/CMakeFiles/rs-benchmark.dir/build.make tools/benchmark/CMakeFiles/rs-benchmark.dir/depend make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' cd /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools/benchmark /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/benchmark /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/tools/benchmark/CMakeFiles/rs-benchmark.dir/DependInfo.cmake --color= make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make -f tools/benchmark/CMakeFiles/rs-benchmark.dir/build.make tools/benchmark/CMakeFiles/rs-benchmark.dir/build make[4]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[4]: Nothing to be done for 'tools/benchmark/CMakeFiles/rs-benchmark.dir/build'. make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' [100%] Built target rs-benchmark make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu/CMakeFiles 0 make -f CMakeFiles/Makefile2 preinstall make[3]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[3]: Nothing to be done for 'preinstall'. make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' Install the project... /usr/bin/cmake -P cmake_install.cmake -- Install configuration: "None" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29.8 -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29 -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29.8" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/rsutil.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/rs.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_frame.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_option.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_d400e.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_config.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_device.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_pipeline.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_context.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_processing.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_internal.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_sensor.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_advanced_mode_command.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_types.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/h/rs_record_playback.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/rs.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/rs_advanced_mode.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/rs_advanced_mode.h -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_device.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_frame.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_record_playback.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_context.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_processing.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_internal.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_d400e.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_export.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_pipeline.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_sensor.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_options.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/include/librealsense2-framos/hpp/rs_types.hpp -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framosTargets.cmake -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framosTargets-none.cmake -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framosConfig.cmake -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framosConfigVersion.cmake /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/pkgconfig/realsense2-framos.pc -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense-file.a -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29.8 -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29 -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29.8" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framos-glTargets.cmake -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framos-glTargets-none.cmake -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framos-glConfig.cmake -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/cmake/realsense2-framos/realsense2-framos-glConfigVersion.cmake -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/pkgconfig/realsense2-framos-gl.pc /sbin/ldconfig.real: Can't create temporary cache file /etc/ld.so.cache~: Permission denied -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-hello-realsense-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-hello-realsense-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-device-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-device-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-capture-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-capture-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-callback-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-callback-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-save-to-disk-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-save-to-disk-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-multicam-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-multicam-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pointcloud-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pointcloud-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-advanced-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-advanced-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-sensor-control-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-sensor-control-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-measure-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-measure-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-color-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-color-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-distance-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-distance-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-post-processing-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-post-processing-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-playback-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-playback-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-motion-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-motion-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-gl-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-gl-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-predict-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-predict-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-and-image-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-and-image-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-trajectory-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-trajectory-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-ar-basic-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-ar-basic-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-tracking-and-depth-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-tracking-and-depth-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-trigger-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-trigger-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-convert-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-convert-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-enumerate-devices-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-enumerate-devices-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-logger-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-logger-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-terminal-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-terminal-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-update-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-update-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-data-collect-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-data-collect-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/realsense-viewer-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/realsense-viewer-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-quality-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-quality-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-rosbag-inspector-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-rosbag-inspector-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-benchmark-framos -- Set runtime path of "/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-benchmark-framos" to "" -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libfw.a -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libtm.a -- Installing: /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libuvc_fw.a make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu' make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' dh_install -O-v -O--buildsystem=cmake install -d debian/.debhelper/generated/ros-melodic-librealsense2-framos dh_installdocs -O-v -O--buildsystem=cmake install -d debian/ros-melodic-librealsense2-framos/usr/share/doc/ros-melodic-librealsense2-framos dh_installchangelogs -O-v -O--buildsystem=cmake install -p -m0644 debian/changelog debian/ros-melodic-librealsense2-framos/usr/share/doc/ros-melodic-librealsense2-framos/changelog.Debian dh_installexamples -O-v -O--buildsystem=cmake dh_installman -O-v -O--buildsystem=cmake dh_installcatalogs -O-v -O--buildsystem=cmake dh_installcron -O-v -O--buildsystem=cmake dh_installdebconf -O-v -O--buildsystem=cmake install -d debian/ros-melodic-librealsense2-framos/DEBIAN dh_installemacsen -O-v -O--buildsystem=cmake dh_installifupdown -O-v -O--buildsystem=cmake dh_installinfo -O-v -O--buildsystem=cmake dh_installinit -O-v -O--buildsystem=cmake dh_installmenu -O-v -O--buildsystem=cmake dh_installmime -O-v -O--buildsystem=cmake dh_installmodules -O-v -O--buildsystem=cmake dh_installlogcheck -O-v -O--buildsystem=cmake dh_installlogrotate -O-v -O--buildsystem=cmake dh_installpam -O-v -O--buildsystem=cmake dh_installppp -O-v -O--buildsystem=cmake dh_installudev -O-v -O--buildsystem=cmake dh_installgsettings -O-v -O--buildsystem=cmake dh_bugfiles -O-v -O--buildsystem=cmake dh_ucf -O-v -O--buildsystem=cmake dh_lintian -O-v -O--buildsystem=cmake dh_gconf -O-v -O--buildsystem=cmake dh_icons -O-v -O--buildsystem=cmake dh_perl -O-v -O--buildsystem=cmake dh_usrlocal -O-v -O--buildsystem=cmake dh_link -O-v -O--buildsystem=cmake rm -f debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29 ln -s librealsense2-framos-gl.so.2.29.8 debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29 rm -f debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29 ln -s librealsense2-framos.so.2.29.8 debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29 rm -f debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so ln -s librealsense2-framos.so.2.29 debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so rm -f debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so ln -s librealsense2-framos-gl.so.2.29 debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so dh_installwm -O-v -O--buildsystem=cmake dh_installxfonts -O-v -O--buildsystem=cmake dh_strip_nondeterminism -O-v -O--buildsystem=cmake Using 1591373473 as canonical time Normalizing debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libtm.a using File::StripNondeterminism::handlers::ar Normalizing debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libuvc_fw.a using File::StripNondeterminism::handlers::ar Normalizing debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libfw.a using File::StripNondeterminism::handlers::ar Normalizing debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense-file.a using File::StripNondeterminism::handlers::ar dh_compress -O-v -O--buildsystem=cmake cd debian/ros-melodic-librealsense2-framos chmod a-x usr/share/doc/ros-melodic-librealsense2-framos/changelog.Debian gzip -9nf usr/share/doc/ros-melodic-librealsense2-framos/changelog.Debian cd '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' dh_fixperms -O-v -O--buildsystem=cmake find debian/ros-melodic-librealsense2-framos -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 find debian/ros-melodic-librealsense2-framos ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s find debian/ros-melodic-librealsense2-framos/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-librealsense2-framos/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 find debian/ros-melodic-librealsense2-framos/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 find debian/ros-melodic-librealsense2-framos -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.scss' -o -name '*.sass' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0644 dh_missing -O-v -O--buildsystem=cmake dh_strip -O-v -O--buildsystem=cmake install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/de objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29.8 debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/de/c5cfbab4f064b4feae4a93a84629ec258b6d5e.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/de/c5cfbab4f064b4feae4a93a84629ec258b6d5e.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/de/c5cfbab4f064b4feae4a93a84629ec258b6d5e.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29.8 objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/de/c5cfbab4f064b4feae4a93a84629ec258b6d5e.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29.8 install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/4a objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29.8 debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/4a/7c11f68881ff645b688542b09d8a554493d0d9.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/4a/7c11f68881ff645b688542b09d8a554493d0d9.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/4a/7c11f68881ff645b688542b09d8a554493d0d9.debug strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29.8 objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/4a/7c11f68881ff645b688542b09d8a554493d0d9.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29.8 install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/39 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-callback-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/39/bad2c8516ce7e2af45489f0c56231f638a69f7.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/39/bad2c8516ce7e2af45489f0c56231f638a69f7.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/39/bad2c8516ce7e2af45489f0c56231f638a69f7.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-callback-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/39/bad2c8516ce7e2af45489f0c56231f638a69f7.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-callback-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/35 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-update-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/35/52c2c456b646bb26670d4889bbeb12cc959f30.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/35/52c2c456b646bb26670d4889bbeb12cc959f30.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/35/52c2c456b646bb26670d4889bbeb12cc959f30.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-update-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/35/52c2c456b646bb26670d4889bbeb12cc959f30.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-update-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-distance-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/cb0872981a2a5372eec13817b2e4b7950c90cf.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/cb0872981a2a5372eec13817b2e4b7950c90cf.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/cb0872981a2a5372eec13817b2e4b7950c90cf.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-distance-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/cb0872981a2a5372eec13817b2e4b7950c90cf.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-distance-framos objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-convert-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/ce1ea0b35a506fb4b69b776be498a688c467ed.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/ce1ea0b35a506fb4b69b776be498a688c467ed.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/ce1ea0b35a506fb4b69b776be498a688c467ed.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-convert-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/af/ce1ea0b35a506fb4b69b776be498a688c467ed.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-convert-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b4 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-trigger-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b4/612293e7a0505496c9ea4553380d01a63b3dec.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b4/612293e7a0505496c9ea4553380d01a63b3dec.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b4/612293e7a0505496c9ea4553380d01a63b3dec.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-trigger-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b4/612293e7a0505496c9ea4553380d01a63b3dec.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-trigger-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b1 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-save-to-disk-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b1/1b9b2dbe6833c710483e126cd6de41b064ce7f.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b1/1b9b2dbe6833c710483e126cd6de41b064ce7f.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b1/1b9b2dbe6833c710483e126cd6de41b064ce7f.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-save-to-disk-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b1/1b9b2dbe6833c710483e126cd6de41b064ce7f.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-save-to-disk-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cd objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-trajectory-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cd/24cf253012bef48a1cda57af7d41844929a17e.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cd/24cf253012bef48a1cda57af7d41844929a17e.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cd/24cf253012bef48a1cda57af7d41844929a17e.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-trajectory-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cd/24cf253012bef48a1cda57af7d41844929a17e.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-trajectory-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c4 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-benchmark-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c4/6c35bd59de30d1462473588d4414fa2ea1509c.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c4/6c35bd59de30d1462473588d4414fa2ea1509c.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c4/6c35bd59de30d1462473588d4414fa2ea1509c.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-benchmark-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c4/6c35bd59de30d1462473588d4414fa2ea1509c.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-benchmark-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a1 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-capture-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a1/b61b313ca8107a8b760b96ae8d8a7b862e577f.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a1/b61b313ca8107a8b760b96ae8d8a7b862e577f.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a1/b61b313ca8107a8b760b96ae8d8a7b862e577f.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-capture-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a1/b61b313ca8107a8b760b96ae8d8a7b862e577f.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-capture-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/49 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/realsense-viewer-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/49/f5f1ff1f1e3393b0cea1a228812cde5428c1cd.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/49/f5f1ff1f1e3393b0cea1a228812cde5428c1cd.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/49/f5f1ff1f1e3393b0cea1a228812cde5428c1cd.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/realsense-viewer-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/49/f5f1ff1f1e3393b0cea1a228812cde5428c1cd.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/realsense-viewer-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a3 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-measure-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a3/663007c8fcde323e54a0cee0fabd08cd2802ed.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a3/663007c8fcde323e54a0cee0fabd08cd2802ed.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a3/663007c8fcde323e54a0cee0fabd08cd2802ed.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-measure-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/a3/663007c8fcde323e54a0cee0fabd08cd2802ed.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-measure-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c0 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c0/fac9e60ec8a399707280f93e797436d1a00c89.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c0/fac9e60ec8a399707280f93e797436d1a00c89.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c0/fac9e60ec8a399707280f93e797436d1a00c89.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/c0/fac9e60ec8a399707280f93e797436d1a00c89.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d9 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-data-collect-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d9/b4925d5311cad7a97f6381163b4b5b8d1b6944.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d9/b4925d5311cad7a97f6381163b4b5b8d1b6944.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d9/b4925d5311cad7a97f6381163b4b5b8d1b6944.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-data-collect-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d9/b4925d5311cad7a97f6381163b4b5b8d1b6944.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-data-collect-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/ae objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-color-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/ae/546d7c7003f16c66b066ceef78f6e8d6139008.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/ae/546d7c7003f16c66b066ceef78f6e8d6139008.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/ae/546d7c7003f16c66b066ceef78f6e8d6139008.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-color-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/ae/546d7c7003f16c66b066ceef78f6e8d6139008.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-color-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/5c objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-enumerate-devices-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/5c/2c9aa54162c867158a6d60da573745a4b00afe.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/5c/2c9aa54162c867158a6d60da573745a4b00afe.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/5c/2c9aa54162c867158a6d60da573745a4b00afe.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-enumerate-devices-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/5c/2c9aa54162c867158a6d60da573745a4b00afe.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-enumerate-devices-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2d objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-motion-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2d/c1d60eb65bfd1603650b488c29ad51f53703df.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2d/c1d60eb65bfd1603650b488c29ad51f53703df.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2d/c1d60eb65bfd1603650b488c29ad51f53703df.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-motion-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2d/c1d60eb65bfd1603650b488c29ad51f53703df.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-motion-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/1e objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-hello-realsense-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/1e/7b6e394d8fe81944148d5007951ce1bbfedb04.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/1e/7b6e394d8fe81944148d5007951ce1bbfedb04.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/1e/7b6e394d8fe81944148d5007951ce1bbfedb04.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-hello-realsense-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/1e/7b6e394d8fe81944148d5007951ce1bbfedb04.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-hello-realsense-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e0 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e0/19d36bdcc26d562632c6bdac2e7ffe1d390043.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e0/19d36bdcc26d562632c6bdac2e7ffe1d390043.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e0/19d36bdcc26d562632c6bdac2e7ffe1d390043.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e0/19d36bdcc26d562632c6bdac2e7ffe1d390043.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/17 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-predict-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/17/bf5192ba1cd52ad758d26928bfd90aaa594095.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/17/bf5192ba1cd52ad758d26928bfd90aaa594095.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/17/bf5192ba1cd52ad758d26928bfd90aaa594095.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-predict-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/17/bf5192ba1cd52ad758d26928bfd90aaa594095.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-predict-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/92 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-tracking-and-depth-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/92/f99685dad7db22964003e5b224f093fc9f793f.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/92/f99685dad7db22964003e5b224f093fc9f793f.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/92/f99685dad7db22964003e5b224f093fc9f793f.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-tracking-and-depth-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/92/f99685dad7db22964003e5b224f093fc9f793f.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-tracking-and-depth-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2b objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-and-image-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2b/4886a9cb8154fe8a8a88eac980460ad0c8fa62.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2b/4886a9cb8154fe8a8a88eac980460ad0c8fa62.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2b/4886a9cb8154fe8a8a88eac980460ad0c8fa62.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-and-image-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/2b/4886a9cb8154fe8a8a88eac980460ad0c8fa62.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-and-image-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/00 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/00/ace9986817489bd2ed8e918cd12a92bc575659.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/00/ace9986817489bd2ed8e918cd12a92bc575659.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/00/ace9986817489bd2ed8e918cd12a92bc575659.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/00/ace9986817489bd2ed8e918cd12a92bc575659.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cb objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-terminal-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cb/9f58e4af61eb4eaefb70b418748a744599d0cf.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cb/9f58e4af61eb4eaefb70b418748a744599d0cf.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cb/9f58e4af61eb4eaefb70b418748a744599d0cf.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-terminal-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/cb/9f58e4af61eb4eaefb70b418748a744599d0cf.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-terminal-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b0 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-advanced-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b0/0749ab54b417cdbdae65c4baac1105cfcb2c3a.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b0/0749ab54b417cdbdae65c4baac1105cfcb2c3a.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b0/0749ab54b417cdbdae65c4baac1105cfcb2c3a.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-advanced-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b0/0749ab54b417cdbdae65c4baac1105cfcb2c3a.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-advanced-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/be objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-gl-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/be/be1c1fc66e3981ff19439efdd54141ec36ffbc.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/be/be1c1fc66e3981ff19439efdd54141ec36ffbc.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/be/be1c1fc66e3981ff19439efdd54141ec36ffbc.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-gl-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/be/be1c1fc66e3981ff19439efdd54141ec36ffbc.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-gl-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8c objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-sensor-control-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8c/8bd49cfa7f93a24c04cbf353504aad4295e676.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8c/8bd49cfa7f93a24c04cbf353504aad4295e676.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8c/8bd49cfa7f93a24c04cbf353504aad4295e676.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-sensor-control-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8c/8bd49cfa7f93a24c04cbf353504aad4295e676.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-sensor-control-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/79 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-quality-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/79/3176c008e68f05a6609345747240023941ddb6.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/79/3176c008e68f05a6609345747240023941ddb6.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/79/3176c008e68f05a6609345747240023941ddb6.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-quality-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/79/3176c008e68f05a6609345747240023941ddb6.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-quality-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/68 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-logger-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/68/218bee12b43062a8c39d61193fba4be2e013af.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/68/218bee12b43062a8c39d61193fba4be2e013af.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/68/218bee12b43062a8c39d61193fba4be2e013af.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-logger-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/68/218bee12b43062a8c39d61193fba4be2e013af.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-logger-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/26 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-rosbag-inspector-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/26/728893392658e67c5b9ef1b659d3a58331117e.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/26/728893392658e67c5b9ef1b659d3a58331117e.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/26/728893392658e67c5b9ef1b659d3a58331117e.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-rosbag-inspector-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/26/728893392658e67c5b9ef1b659d3a58331117e.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-rosbag-inspector-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8e objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-ar-basic-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8e/21d0b5ec5b0c6e82eb39d271ea33c17262b8e3.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8e/21d0b5ec5b0c6e82eb39d271ea33c17262b8e3.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8e/21d0b5ec5b0c6e82eb39d271ea33c17262b8e3.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-ar-basic-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/8e/21d0b5ec5b0c6e82eb39d271ea33c17262b8e3.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-ar-basic-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d8 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-device-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d8/4e19442bcfd258731535030209dc0b58117024.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d8/4e19442bcfd258731535030209dc0b58117024.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d8/4e19442bcfd258731535030209dc0b58117024.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-device-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/d8/4e19442bcfd258731535030209dc0b58117024.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-device-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e8 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pointcloud-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e8/8dcbb449d92768de7ec214447253a92d7e2e33.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e8/8dcbb449d92768de7ec214447253a92d7e2e33.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e8/8dcbb449d92768de7ec214447253a92d7e2e33.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pointcloud-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/e8/8dcbb449d92768de7ec214447253a92d7e2e33.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pointcloud-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/66 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-post-processing-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/66/973d2219dd03a29a787da81b4e0b550de60ab7.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/66/973d2219dd03a29a787da81b4e0b550de60ab7.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/66/973d2219dd03a29a787da81b4e0b550de60ab7.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-post-processing-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/66/973d2219dd03a29a787da81b4e0b550de60ab7.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-post-processing-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/94 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-playback-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/94/c39b166c6071132735c5c4d68a310278b9c186.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/94/c39b166c6071132735c5c4d68a310278b9c186.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/94/c39b166c6071132735c5c4d68a310278b9c186.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-playback-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/94/c39b166c6071132735c5c4d68a310278b9c186.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-playback-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/9f objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-multicam-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/9f/2b875678d7fe6553edd885d60ccc018acf64e2.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/9f/2b875678d7fe6553edd885d60ccc018acf64e2.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/9f/2b875678d7fe6553edd885d60ccc018acf64e2.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-multicam-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/9f/2b875678d7fe6553edd885d60ccc018acf64e2.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-multicam-framos install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b8 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b8/b20f4e98a55dd3c2ac930267e3c98913849e04.debug chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b8/b20f4e98a55dd3c2ac930267e3c98913849e04.debug chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b8/b20f4e98a55dd3c2ac930267e3c98913849e04.debug strip --remove-section=.comment --remove-section=.note debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-framos objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/lib/debug/.build-id/b8/b20f4e98a55dd3c2ac930267e3c98913849e04.debug debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-framos strip --strip-debug --remove-section=.comment --remove-section=.note --enable-deterministic-archives debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libtm.a strip --strip-debug --remove-section=.comment --remove-section=.note --enable-deterministic-archives debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libuvc_fw.a strip --strip-debug --remove-section=.comment --remove-section=.note --enable-deterministic-archives debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/libfw.a strip --strip-debug --remove-section=.comment --remove-section=.note --enable-deterministic-archives debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense-file.a install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/share/doc ln -s ros-melodic-librealsense2-framos debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/usr/share/doc/ros-melodic-librealsense2-framos-dbgsym dh_makeshlibs -O-v -O--buildsystem=cmake rm -f debian/ros-melodic-librealsense2-framos/DEBIAN/shlibs echo "librealsense2-framos-gl 2.29 ros-melodic-librealsense2-framos" >> debian/ros-melodic-librealsense2-framos/DEBIAN/shlibs echo "librealsense2-framos 2.29 ros-melodic-librealsense2-framos" >> debian/ros-melodic-librealsense2-framos/DEBIAN/shlibs chmod 0644 -- debian/ros-melodic-librealsense2-framos/DEBIAN/shlibs chown 0:0 -- debian/ros-melodic-librealsense2-framos/DEBIAN/shlibs mv debian/.debhelper/generated/ros-melodic-librealsense2-framos/triggers.new debian/.debhelper/generated/ros-melodic-librealsense2-framos/triggers debian/rules override_dh_shlibdeps make[1]: Entering directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' # In case we're installing to a non-standard location, look for a setup.sh # in the install tree that was dropped by catkin, and source it. It will # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ dh_shlibdeps -l/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos//opt/ros/melodic/lib/ dpkg-shlibdeps -Tdebian/ros-melodic-librealsense2-framos.substvars -l/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian/ros-melodic-librealsense2-framos//opt/ros/melodic/lib/ debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos.so.2.29.8 debian/ros-melodic-librealsense2-framos/opt/ros/melodic/lib/librealsense2-framos-gl.so.2.29.8 debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-callback-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-update-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-distance-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-convert-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-trigger-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-save-to-disk-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-trajectory-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-benchmark-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-capture-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/realsense-viewer-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-measure-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-data-collect-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-color-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-enumerate-devices-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-motion-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-hello-realsense-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-predict-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-tracking-and-depth-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-and-image-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pose-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-terminal-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-align-advanced-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-gl-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-sensor-control-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-depth-quality-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-fw-logger-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-rosbag-inspector-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-ar-basic-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-software-device-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-pointcloud-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-post-processing-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-playback-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-multicam-framos debian/ros-melodic-librealsense2-framos/opt/ros/melodic/bin/rs-record-framos dpkg-shlibdeps: warning: can't extract name and version from library name 'libCameraSuite.so' dpkg-shlibdeps: warning: can't extract name and version from library name 'libCameraSuite.so' make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1' dh_installdeb -O-v -O--buildsystem=cmake install -p -m0644 debian/.debhelper/generated/ros-melodic-librealsense2-framos/triggers debian/ros-melodic-librealsense2-framos/DEBIAN/triggers dh_gencontrol -O-v -O--buildsystem=cmake echo misc:Depends= >> debian/ros-melodic-librealsense2-framos.substvars echo misc:Pre-Depends= >> debian/ros-melodic-librealsense2-framos.substvars install -d debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/DEBIAN dpkg-gencontrol -pros-melodic-librealsense2-framos -ldebian/changelog -Tdebian/ros-melodic-librealsense2-framos.substvars -Pdebian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root -UPre-Depends -URecommends -USuggests -UEnhances -UProvides -UEssential -UConflicts -DPriority=optional -UHomepage -UImportant -DAuto-Built-Package=debug-symbols -DPackage=ros-melodic-librealsense2-framos-dbgsym "-DDepends=ros-melodic-librealsense2-framos (= \${binary:Version})" "-DDescription=debug symbols for ros-melodic-librealsense2-framos" "-DBuild-Ids=00ace9986817489bd2ed8e918cd12a92bc575659 17bf5192ba1cd52ad758d26928bfd90aaa594095 1e7b6e394d8fe81944148d5007951ce1bbfedb04 26728893392658e67c5b9ef1b659d3a58331117e 2b4886a9cb8154fe8a8a88eac980460ad0c8fa62 2dc1d60eb65bfd1603650b488c29ad51f53703df 3552c2c456b646bb26670d4889bbeb12cc959f30 39bad2c8516ce7e2af45489f0c56231f638a69f7 49f5f1ff1f1e3393b0cea1a228812cde5428c1cd 4a7c11f68881ff645b688542b09d8a554493d0d9 5c2c9aa54162c867158a6d60da573745a4b00afe 66973d2219dd03a29a787da81b4e0b550de60ab7 68218bee12b43062a8c39d61193fba4be2e013af 793176c008e68f05a6609345747240023941ddb6 8c8bd49cfa7f93a24c04cbf353504aad4295e676 8e21d0b5ec5b0c6e82eb39d271ea33c17262b8e3 92f99685dad7db22964003e5b224f093fc9f793f 94c39b166c6071132735c5c4d68a310278b9c186 9f2b875678d7fe6553edd885d60ccc018acf64e2 a1b61b313ca8107a8b760b96ae8d8a7b862e577f a3663007c8fcde323e54a0cee0fabd08cd2802ed ae546d7c7003f16c66b066ceef78f6e8d6139008 afcb0872981a2a5372eec13817b2e4b7950c90cf afce1ea0b35a506fb4b69b776be498a688c467ed b00749ab54b417cdbdae65c4baac1105cfcb2c3a b11b9b2dbe6833c710483e126cd6de41b064ce7f b4612293e7a0505496c9ea4553380d01a63b3dec b8b20f4e98a55dd3c2ac930267e3c98913849e04 bebe1c1fc66e3981ff19439efdd54141ec36ffbc c0fac9e60ec8a399707280f93e797436d1a00c89 c46c35bd59de30d1462473588d4414fa2ea1509c cb9f58e4af61eb4eaefb70b418748a744599d0cf cd24cf253012bef48a1cda57af7d41844929a17e d84e19442bcfd258731535030209dc0b58117024 d9b4925d5311cad7a97f6381163b4b5b8d1b6944 dec5cfbab4f064b4feae4a93a84629ec258b6d5e e019d36bdcc26d562632c6bdac2e7ffe1d390043 e88dcbb449d92768de7ec214447253a92d7e2e33" -DSection=debug -DPackage-Type=ddeb -UMulti-Arch -UReplaces -UBreaks chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/DEBIAN/control chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/DEBIAN/control dpkg-gencontrol -pros-melodic-librealsense2-framos -ldebian/changelog -Tdebian/ros-melodic-librealsense2-framos.substvars -Pdebian/ros-melodic-librealsense2-framos -UMulti-Arch chmod 0644 -- debian/ros-melodic-librealsense2-framos/DEBIAN/control chown 0:0 -- debian/ros-melodic-librealsense2-framos/DEBIAN/control dh_md5sums -O-v -O--buildsystem=cmake (cd debian/ros-melodic-librealsense2-framos >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum | perl -pe 'if (s@^\\@@) { s/\\\\/\\/g; }' > DEBIAN/md5sums) >/dev/null chmod 0644 -- debian/ros-melodic-librealsense2-framos/DEBIAN/md5sums chown 0:0 -- debian/ros-melodic-librealsense2-framos/DEBIAN/md5sums (cd debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum | perl -pe 'if (s@^\\@@) { s/\\\\/\\/g; }' > DEBIAN/md5sums) >/dev/null chmod 0644 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/DEBIAN/md5sums chown 0:0 -- debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root/DEBIAN/md5sums dh_builddeb -O-v -O--buildsystem=cmake dpkg-deb --build debian/ros-melodic-librealsense2-framos .. install -d debian/.debhelper/scratch-space/build-ros-melodic-librealsense2-framos dpkg-deb --build debian/.debhelper/ros-melodic-librealsense2-framos/dbgsym-root debian/.debhelper/scratch-space/build-ros-melodic-librealsense2-framos dpkg-deb: building package 'ros-melodic-librealsense2-framos' in '../ros-melodic-librealsense2-framos_2.29.1-1bionic.20200605.161113_amd64.deb'. dpkg-deb: building package 'ros-melodic-librealsense2-framos-dbgsym' in 'debian/.debhelper/scratch-space/build-ros-melodic-librealsense2-framos/ros-melodic-librealsense2-framos-dbgsym_2.29.1-1bionic.20200605.161113_amd64.deb'. Renaming ros-melodic-librealsense2-framos-dbgsym_2.29.1-1bionic.20200605.161113_amd64.deb to ros-melodic-librealsense2-framos-dbgsym_2.29.1-1bionic.20200605.161113_amd64.ddeb mv debian/.debhelper/scratch-space/build-ros-melodic-librealsense2-framos/ros-melodic-librealsense2-framos-dbgsym_2.29.1-1bionic.20200605.161113_amd64.deb ../ros-melodic-librealsense2-framos-dbgsym_2.29.1-1bionic.20200605.161113_amd64.ddeb dpkg-genbuildinfo --build=binary dpkg-genchanges --build=binary >../ros-melodic-librealsense2-framos_2.29.1-1bionic.20200605.161113_amd64.changes dpkg-genchanges: info: binary-only upload (no source code included) dpkg-source --after-build ros-melodic-librealsense2-framos-2.29.1 dpkg-source: info: using options from ros-melodic-librealsense2-framos-2.29.1/debian/source/options: --auto-commit dpkg-buildpackage: info: binary-only upload (no source included) I: Successfully built in /tmp/binarydeb/ros-melodic-librealsense2-framos-2.29.1 # END SUBSECTION + echo # END SECTION # END SECTION [Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins3952422346277343555.sh + [ false = false ] + echo # BEGIN SECTION: Clean up to save disk space on agents # BEGIN SECTION: Clean up to save disk space on agents + chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__librealsense2_framos__ubuntu_bionic_amd64__binary/binarydeb + rm -fr binarydeb/ros-melodic-librealsense2-framos-2.29.1/CMake binarydeb/ros-melodic-librealsense2-framos-2.29.1/CMakeLists.txt binarydeb/ros-melodic-librealsense2-framos-2.29.1/CONTRIBUTING.md binarydeb/ros-melodic-librealsense2-framos-2.29.1/LICENSE binarydeb/ros-melodic-librealsense2-framos-2.29.1/NOTICE binarydeb/ros-melodic-librealsense2-framos-2.29.1/appveyor.yml binarydeb/ros-melodic-librealsense2-framos-2.29.1/cmake_uninstall.cmake binarydeb/ros-melodic-librealsense2-framos-2.29.1/code-of-conduct.md binarydeb/ros-melodic-librealsense2-framos-2.29.1/common binarydeb/ros-melodic-librealsense2-framos-2.29.1/config binarydeb/ros-melodic-librealsense2-framos-2.29.1/connectivity_check binarydeb/ros-melodic-librealsense2-framos-2.29.1/d400e_api_extensions.md binarydeb/ros-melodic-librealsense2-framos-2.29.1/debian binarydeb/ros-melodic-librealsense2-framos-2.29.1/doc binarydeb/ros-melodic-librealsense2-framos-2.29.1/examples binarydeb/ros-melodic-librealsense2-framos-2.29.1/include binarydeb/ros-melodic-librealsense2-framos-2.29.1/obj-x86_64-linux-gnu binarydeb/ros-melodic-librealsense2-framos-2.29.1/package.xml binarydeb/ros-melodic-librealsense2-framos-2.29.1/readme.md binarydeb/ros-melodic-librealsense2-framos-2.29.1/scripts binarydeb/ros-melodic-librealsense2-framos-2.29.1/src binarydeb/ros-melodic-librealsense2-framos-2.29.1/third-party binarydeb/ros-melodic-librealsense2-framos-2.29.1/tools binarydeb/ros-melodic-librealsense2-framos-2.29.1/unit-tests binarydeb/ros-melodic-librealsense2-framos-2.29.1/wrappers + echo # END SECTION # END SECTION SSH: Connecting from host [lcas-buildfarm-slave-1] SSH: Connecting with configuration [repo] ... SSH: Disconnecting configuration [repo] ... SSH: Transferred 3 file(s) Build step 'Send files or execute commands over SSH' changed build result to SUCCESS Waiting for the completion of Mrel_import-package Mrel_import-package #544 started. Mrel_import-package #544 completed. Result was SUCCESS $ ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 9552 killed; [ssh-agent] Stopped. [description-setter] Description set: 2.29.1-1bionic.20200605.161113 Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 Finished: SUCCESS