FailedConsole Output

Skipping 44 KB.. Full Log
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
20:21:27  ---> Using cache
20:21:27  ---> 93817e58c704
20:21:27 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
20:21:27  ---> Using cache
20:21:27  ---> 6f84e28b9a74
20:21:27 Step 21/28 : RUN echo "2020-08-26 (+0000)"
20:21:27  ---> Using cache
20:21:27  ---> 2e4eb728847b
20:21:27 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
20:21:27  ---> Using cache
20:21:27  ---> 33be356beafa
20:21:27 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
20:21:27  ---> Using cache
20:21:27  ---> 9a97fae18e92
20:21:27 Step 24/28 : RUN echo "2020-08-26 19:21:24 +0000"
20:21:27  ---> Running in 2f1b825c1b1f
20:21:27 2020-08-26 19:21:24 +0000
20:21:28  ---> 7a79b5d9c258
20:21:28 Removing intermediate container 2f1b825c1b1f
20:21:28 Step 25/28 : RUN python3 -u /tmp/wrapper_scripts/apt.py update
20:21:28  ---> Running in 9190e89b5e5b
20:21:29 Invoking 'apt-get update'
20:21:30 Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B]
20:21:30 Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
20:21:30 Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease
20:21:30 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
20:21:30 Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
20:21:30 Get:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
20:21:30 Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease
20:21:30 Get:8 http://10.210.9.154/ubuntu/building bionic/main Sources [145 kB]
20:21:30 Get:9 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [171 kB]
20:21:30 Get:10 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1,044 kB]
20:21:30 Get:11 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [890 kB]
20:21:30 Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1,341 kB]
20:21:30 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,418 kB]
20:21:31 Fetched 5,353 kB in 1s (3,602 kB/s)
20:21:33 Reading package lists...
20:21:34  ---> 5febf6b7d120
20:21:34 Removing intermediate container 9190e89b5e5b
20:21:34 Step 26/28 : USER buildfarm
20:21:34  ---> Running in a15f9445e6d4
20:21:34  ---> 5adc1ebc32ec
20:21:34 Removing intermediate container a15f9445e6d4
20:21:34 Step 27/28 : ENTRYPOINT sh -c
20:21:34  ---> Running in 51fbcc19c573
20:21:34  ---> e95c2f06b312
20:21:35 Removing intermediate container 51fbcc19c573
20:21:35 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 spencer_tracking_rviz_plugin --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic spencer_tracking_rviz_plugin --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 spencer_tracking_rviz_plugin 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
20:21:35  ---> Running in fff6a07907f2
20:21:35  ---> 53135364f6eb
20:21:35 Removing intermediate container fff6a07907f2
20:21:35 Successfully built 53135364f6eb
20:21:35 Successfully tagged binarydeb_task_generation.melodic_ubuntu_bionic_amd64_spencer_tracking_rviz_plugin:latest
20:21:35 + echo # END SECTION
20:21:35 # END SECTION
20:21:35 + echo # BEGIN SECTION: Run Dockerfile - binarydeb task
1. Run Dockerfile - binarydeb task

Hide Details

20:21:35 # BEGIN SECTION: Run Dockerfile - binarydeb task 20:21:35 + [ -f /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/binarydeb ] 20:21:35 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/binarydeb 20:21:35 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/docker_build_binarydeb 20:21:35 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/binarydeb 20:21:35 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/docker_build_binarydeb 20:21:35 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__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_spencer_tracking_rviz_plugin
1.1. get sourcedeb

Hide Details

20:21:36 # BEGIN SUBSECTION: get sourcedeb 20:21:43 Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-spencer-tracking-rviz-plugin=1.2.0-1bionic' 20:21:45 Invoking 'apt-get source --download-only --only-source ros-melodic-spencer-tracking-rviz-plugin=1.2.0-1bionic' 20:21:45 Reading package lists... 20:21:45 Need to get 2,701 kB of source archives. 20:21:45 Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-spencer-tracking-rviz-plugin 1.2.0-1bionic (dsc) [1,280 B] 20:21:45 Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-spencer-tracking-rviz-plugin 1.2.0-1bionic (tar) [2,697 kB] 20:21:45 Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-spencer-tracking-rviz-plugin 1.2.0-1bionic (diff) [2,764 B] 20:21:45 Fetched 2,701 kB in 0s (35.0 MB/s) 20:21:45 Download complete and in download only mode 20:21:45 Invoking 'dpkg-source -x ros-melodic-spencer-tracking-rviz-plugin_1.2.0-1bionic.dsc' 20:21:46 dpkg-source: warning: extracting unsigned source package (ros-melodic-spencer-tracking-rviz-plugin_1.2.0-1bionic.dsc) 20:21:46 dpkg-source: info: extracting ros-melodic-spencer-tracking-rviz-plugin in ros-melodic-spencer-tracking-rviz-plugin-1.2.0 20:21:46 dpkg-source: info: unpacking ros-melodic-spencer-tracking-rviz-plugin_1.2.0.orig.tar.gz 20:21:46 dpkg-source: info: unpacking ros-melodic-spencer-tracking-rviz-plugin_1.2.0-1bionic.debian.tar.xz 20:21:46 Package maintainer emails: linder@cs.uni-freiburg.de 20:21:46 # END SUBSECTION
1.2. append build timestamp

Hide Details

20:21:47 # BEGIN SUBSECTION: append build timestamp 20:21:47 Invoking 'debchange -v 1.2.0-1bionic.20200826.192147 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0' 20:21:47 # END SUBSECTION
20:21:50 Looking for the '.dsc' file of package 'ros-melodic-spencer-tracking-rviz-plugin' with version '1.2.0-1' 20:21:53 Using the following distribution repositories: 20:21:53 http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) 20:21:53 http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) 20:21:53 Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': 20:21:53 # generated from release/binarydeb_task.Dockerfile.em 20:21:53 20:21:53 20:21:53 FROM ubuntu:bionic 20:21:53 20:21:53 VOLUME ["/var/cache/apt/archives"] 20:21:53 20:21:53 ENV DEBIAN_FRONTEND noninteractive 20:21:53 20:21:53 20:21:53 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 20:21:53 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 20:21:53 RUN locale-gen en_US.UTF-8 20:21:53 ENV LANG en_US.UTF-8 20:21:53 ENV TZ GMT+00 20:21:53 20:21:53 RUN useradd -u 1002 -l -m buildfarm 20:21:53 20:21:53 RUN mkdir /tmp/keys 20:21:53 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 20:21:53 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 20:21:53 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 20:21:53 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:21:53 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:21:53 20:21:53 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)) 20:21:53 20:21:53 RUN mkdir /tmp/wrapper_scripts 20:21:53 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 20:21:53 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 20:21:53 20:21:53 # automatic invalidation once every day 20:21:53 RUN echo "2020-08-26 (+0000)" 20:21:53 20:21:53 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 20:21:53 20:21:53 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 20:21:53 20:21:53 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 20:21:53 20:21:53 20:21:53 # for each dependency: echo version, apt update, apt install, apt clean 20:21:53 # to prevent exceeding the docker layer limit several lines have been folded 20:21:53 RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 20:21:53 RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 20:21:53 RUN echo "ros-melodic-catkin: 0.7.28-1bionic.20200731.223830" && echo "ros-melodic-roslib: 1.14.9-1bionic.20200801.032024" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ros-melodic-roslib 20:21:53 RUN echo "ros-melodic-rviz: 1.13.13-1bionic.20200821.210302" && echo "ros-melodic-spencer-human-attribute-msgs: 1.2.0-1bionic.20200826.145523" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-rviz ros-melodic-spencer-human-attribute-msgs 20:21:53 RUN echo "ros-melodic-spencer-social-relation-msgs: 1.2.0-1bionic.20200826.150309" && echo "ros-melodic-spencer-tracking-msgs: 1.2.0-1bionic.20200826.150520" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-spencer-social-relation-msgs ros-melodic-spencer-tracking-msgs 20:21:53 20:21:53 20:21:53 USER buildfarm 20:21:53 ENTRYPOINT ["sh", "-c"] 20:21:53 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic spencer_tracking_rviz_plugin --sourcedeb-dir /tmp/binarydeb"] 20:21:53 Mount the following volumes when running the container: 20:21:53 -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro 20:21:53 -v /tmp/binarydeb:/tmp/binarydeb 20:21:53 + echo # END SECTION 20:21:53 # END SECTION
20:21:53 [Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins2398945487222415235.sh 20:21:53 + sleep 1 20:21:53 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 4780 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid 20:21:54 + echo # BEGIN SECTION: Build Dockerfile - build binarydeb
2. Build Dockerfile - build binarydeb

Hide Details

20:21:54 # BEGIN SECTION: Build Dockerfile - build binarydeb 20:21:54 + cd /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/docker_build_binarydeb 20:21:54 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 20:21:54 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 20:21:54 Check docker base image for updates: docker pull ubuntu:bionic 20:21:56 bionic: Pulling from library/ubuntu 20:21:56 Digest: sha256:05a58ded9a2c792598e8f4aa8ffe300318eac6f294bf4f49a7abae7544918592 20:21:56 Status: Image is up to date for ubuntu:bionic 20:21:56 + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_spencer_tracking_rviz_plugin . 20:21:56 Sending build context to Docker daemon 21.5kB 20:21:56 Step 1/31 : FROM ubuntu:bionic 20:21:56 ---> 6526a1858e5d 20:21:56 Step 2/31 : VOLUME /var/cache/apt/archives 20:21:56 ---> Using cache 20:21:56 ---> 3f1aa7fb77e0 20:21:56 Step 3/31 : ENV DEBIAN_FRONTEND noninteractive 20:21:56 ---> Using cache 20:21:56 ---> 1b3e9bc16537 20:21:56 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 20:21:56 ---> Using cache 20:21:56 ---> 2b673d46e5c5 20:21:57 Step 5/31 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 20:21:57 ---> Using cache 20:21:57 ---> 71cffcec2193 20:21:57 Step 6/31 : RUN locale-gen en_US.UTF-8 20:21:57 ---> Using cache 20:21:57 ---> 2c6483dd52a0 20:21:57 Step 7/31 : ENV LANG en_US.UTF-8 20:21:57 ---> Using cache 20:21:57 ---> 3ffade552ffe 20:21:57 Step 8/31 : ENV TZ GMT+00 20:21:57 ---> Using cache 20:21:57 ---> ee090c93bbaa 20:21:57 Step 9/31 : RUN useradd -u 1002 -l -m buildfarm 20:21:57 ---> Using cache 20:21:57 ---> 7efc11772f6f 20:21:57 Step 10/31 : RUN mkdir /tmp/keys 20:21:57 ---> Using cache 20:21:57 ---> 65997e2e5b3b 20:21:57 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 20:21:57 ---> Using cache 20:21:57 ---> 4c6b2acb6ebf 20:21:57 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 20:21:57 ---> Using cache 20:21:57 ---> e51be1d255ac 20:21:57 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 20:21:57 ---> Using cache 20:21:57 ---> c67a7e335cb3 20:21:57 Step 14/31 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:21:57 ---> Using cache 20:21:57 ---> 1b61ba1c1008 20:21:57 Step 15/31 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:21:57 ---> Using cache 20:21:57 ---> 132163e8cf1d 20:21:57 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)) 20:21:57 ---> Using cache 20:21:57 ---> 797717ed31ba 20:21:57 Step 17/31 : RUN mkdir /tmp/wrapper_scripts 20:21:57 ---> Using cache 20:21:57 ---> ea33243731ad 20:21:57 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 20:21:57 ---> Using cache 20:21:57 ---> ac5709420653 20:21:57 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 20:21:57 ---> Using cache 20:21:57 ---> 7e43903433b1 20:21:57 Step 20/31 : RUN echo "2020-08-26 (+0000)" 20:21:57 ---> Using cache 20:21:57 ---> 45b03917c816 20:21:57 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 20:21:57 ---> Using cache 20:21:57 ---> f327549396ad 20:21:57 Step 22/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 20:21:57 ---> Using cache 20:21:57 ---> 1fd410942e53 20:21:57 Step 23/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 20:21:57 ---> Using cache 20:21:57 ---> 05a1bf6977dc 20:21:57 Step 24/31 : RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 20:21:57 ---> Using cache 20:21:57 ---> cb33408a5db8 20:21:57 Step 25/31 : RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 20:21:57 ---> Using cache 20:21:57 ---> 01c37dace55c 20:21:57 Step 26/31 : RUN echo "ros-melodic-catkin: 0.7.28-1bionic.20200731.223830" && echo "ros-melodic-roslib: 1.14.9-1bionic.20200801.032024" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ros-melodic-roslib 20:21:57 ---> Using cache 20:21:57 ---> a124df3b6459 20:21:57 Step 27/31 : RUN echo "ros-melodic-rviz: 1.13.13-1bionic.20200821.210302" && echo "ros-melodic-spencer-human-attribute-msgs: 1.2.0-1bionic.20200826.145523" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-rviz ros-melodic-spencer-human-attribute-msgs 20:21:57 ---> Using cache 20:21:57 ---> 2f96ff7afd1f 20:21:57 Step 28/31 : RUN echo "ros-melodic-spencer-social-relation-msgs: 1.2.0-1bionic.20200826.150309" && echo "ros-melodic-spencer-tracking-msgs: 1.2.0-1bionic.20200826.150520" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-spencer-social-relation-msgs ros-melodic-spencer-tracking-msgs 20:21:57 ---> Using cache 20:21:57 ---> 4d0a8b5d7e0e 20:21:57 Step 29/31 : USER buildfarm 20:21:57 ---> Using cache 20:21:57 ---> a0d88b8632d9 20:21:57 Step 30/31 : ENTRYPOINT sh -c 20:21:57 ---> Using cache 20:21:57 ---> c6afcf64ae9a 20:21:57 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 spencer_tracking_rviz_plugin --sourcedeb-dir /tmp/binarydeb 20:21:57 ---> Using cache 20:21:57 ---> 69e6553fb176 20:21:57 Successfully built 69e6553fb176 20:21:57 Successfully tagged binarydeb_build.melodic_ubuntu_bionic_amd64_spencer_tracking_rviz_plugin:latest 20:21:57 + echo # END SECTION 20:21:57 # END SECTION
20:21:57 + echo # BEGIN SECTION: Run Dockerfile - build binarydeb
3. Run Dockerfile - build binarydeb

Hide Details

20:21:57 # BEGIN SECTION: Run Dockerfile - build binarydeb 20:21:57 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__spencer_tracking_rviz_plugin__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_spencer_tracking_rviz_plugin
3.1. build binarydeb

Hide Details

20:21:58 # BEGIN SUBSECTION: build binarydeb 20:21:59 Package 'ros-melodic-spencer-tracking-rviz-plugin' version: 1.2.0-1bionic.20200826.192147 20:22:02 Invoking 'apt-src build ros-melodic-spencer-tracking-rviz-plugin' in '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0' 20:22:05 I: Building in /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0 .. 20:22:05 dpkg-buildpackage: info: source package ros-melodic-spencer-tracking-rviz-plugin 20:22:05 dpkg-buildpackage: info: source version 1.2.0-1bionic.20200826.192147 20:22:05 dpkg-buildpackage: info: source distribution bionic 20:22:05 dpkg-buildpackage: info: source changed by Timm Linder <linder@cs.uni-freiburg.de> 20:22:05 dpkg-source --before-build ros-melodic-spencer-tracking-rviz-plugin-1.2.0 20:22:05 dpkg-buildpackage: info: host architecture amd64 20:22:05 dpkg-source: info: using options from ros-melodic-spencer-tracking-rviz-plugin-1.2.0/debian/source/options: --auto-commit 20:22:05 fakeroot debian/rules clean 20:22:06 dh clean -v --buildsystem=cmake 20:22:06 dh_testdir -O-v -O--buildsystem=cmake 20:22:06 dh_auto_clean -O-v -O--buildsystem=cmake 20:22:06 dh_clean -O-v -O--buildsystem=cmake 20:22:06 rm -f debian/debhelper-build-stamp 20:22:06 rm -rf debian/.debhelper/ 20:22:06 rm -f -- debian/ros-melodic-spencer-tracking-rviz-plugin.substvars debian/files 20:22:06 rm -fr -- debian/ros-melodic-spencer-tracking-rviz-plugin/ debian/tmp/ 20:22:06 find . \( \( \ 20:22:06 \( -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 \ 20:22:06 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 20:22:06 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 20:22:06 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 20:22:06 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 20:22:06 \) -exec rm -f {} + \) -o \ 20:22:06 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 20:22:06 debian/rules build 20:22:06 dh build -v --buildsystem=cmake 20:22:06 dh_testdir -O-v -O--buildsystem=cmake 20:22:06 dh_update_autotools_config -O-v -O--buildsystem=cmake 20:22:06 debian/rules override_dh_auto_configure 20:22:06 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0' 20:22:06 # In case we're installing to a non-standard location, look for a setup.sh 20:22:06 # in the install tree that was dropped by catkin, and source it. It will 20:22:06 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 20:22:06 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 20:22:06 dh_auto_configure -- \ 20:22:06 -DCATKIN_BUILD_BINARY_PACKAGE="1" \ 20:22:06 -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" \ 20:22:06 -DCMAKE_PREFIX_PATH="/opt/ros/melodic" 20:22:07 install -d obj-x86_64-linux-gnu 20:22:07 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 -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic -DCMAKE_PREFIX_PATH=/opt/ros/melodic 20:22:09 -- The C compiler identification is GNU 7.5.0 20:22:09 -- The CXX compiler identification is GNU 7.5.0 20:22:09 -- Check for working C compiler: /usr/bin/cc 20:22:09 -- Check for working C compiler: /usr/bin/cc -- works 20:22:09 -- Detecting C compiler ABI info 20:22:09 -- Detecting C compiler ABI info - done 20:22:09 -- Detecting C compile features 20:22:10 -- Detecting C compile features - done 20:22:10 -- Check for working CXX compiler: /usr/bin/c++ 20:22:10 -- Check for working CXX compiler: /usr/bin/c++ -- works 20:22:10 -- Detecting CXX compiler ABI info 20:22:10 -- Detecting CXX compiler ABI info - done 20:22:10 -- Detecting CXX compile features 20:22:11 -- Detecting CXX compile features - done 20:22:11 -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/devel 20:22:11 -- Using CMAKE_PREFIX_PATH: /opt/ros/melodic 20:22:11 -- This workspace overlays: /opt/ros/melodic 20:22:12 -- Found PythonInterp: /usr/bin/python2 (found suitable version "2.7.17", minimum required is "2") 20:22:12 -- Using PYTHON_EXECUTABLE: /usr/bin/python2 20:22:12 -- Using Debian Python package layout 20:22:12 -- Using empy: /usr/bin/empy 20:22:12 -- Using CATKIN_ENABLE_TESTING: ON 20:22:12 -- Skip enable_testing() when building binary package 20:22:12 -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/test_results 20:22:12 -- Found gtest sources under '/usr/src/googletest': gtests will be built 20:22:12 -- Found gmock sources under '/usr/src/googletest': gmock will be built 20:22:12 -- Found PythonInterp: /usr/bin/python2 (found version "2.7.17") 20:22:12 -- Looking for pthread.h 20:22:12 -- Looking for pthread.h - found 20:22:12 -- Looking for pthread_create 20:22:13 -- Looking for pthread_create - not found 20:22:13 -- Looking for pthread_create in pthreads 20:22:13 -- Looking for pthread_create in pthreads - not found 20:22:13 -- Looking for pthread_create in pthread 20:22:13 -- Looking for pthread_create in pthread - found 20:22:13 -- Found Threads: TRUE 20:22:13 -- Using Python nosetests: /usr/bin/nosetests-2.7 20:22:13 -- catkin 0.7.28 20:22:13 -- BUILD_SHARED_LIBS is on 20:22:15 -- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy 20:22:16 -- Using Qt5 based on the rviz_QT_VERSION: 5.9.5 20:22:16 CMake Error at CMakeLists.txt:60 (find_package): 20:22:16 By not providing "FindQt5.cmake" in CMAKE_MODULE_PATH this project has 20:22:16 asked CMake to find a package configuration file provided by "Qt5", but 20:22:16 CMake did not find one. 20:22:16 20:22:16 Could not find a package configuration file provided by "Qt5" (requested 20:22:16 version 5.9.5) with any of the following names: 20:22:16 20:22:16 Qt5Config.cmake 20:22:16 qt5-config.cmake 20:22:16 20:22:16 Add the installation prefix of "Qt5" to CMAKE_PREFIX_PATH or set "Qt5_DIR" 20:22:16 to a directory containing one of the above files. If "Qt5" provides a 20:22:16 separate development package or SDK, be sure it has been installed. 20:22:16 20:22:16 20:22:16 -- Configuring incomplete, errors occurred! 20:22:16 See also "/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeOutput.log". 20:22:16 See also "/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeError.log". 20:22:16 cd obj-x86_64-linux-gnu && tail -v -n \+0 CMakeCache.txt 20:22:16 ==> CMakeCache.txt <== 20:22:16 # This is the CMakeCache file. 20:22:16 # For build in directory: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu 20:22:16 # It was generated by CMake: /usr/bin/cmake 20:22:16 # You can edit this file to change values found and used by cmake. 20:22:16 # If you do not want to change any of the values, simply exit the editor. 20:22:16 # If you do want to change a value, simply edit, save, and exit the editor. 20:22:16 # The syntax for the file is as follows: 20:22:16 # KEY:TYPE=VALUE 20:22:16 # KEY is the name of a variable in the cache. 20:22:16 # TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. 20:22:16 # VALUE is the current value for the KEY. 20:22:16 20:22:16 ######################## 20:22:16 # EXTERNAL cache entries 20:22:16 ######################## 20:22:16 20:22:16 //Builds the googlemock subproject 20:22:16 BUILD_GMOCK:BOOL=ON 20:22:16 20:22:16 //Builds the googletest subproject 20:22:16 BUILD_GTEST:BOOL=OFF 20:22:16 20:22:16 //Build shared libraries (DLLs). 20:22:16 BUILD_SHARED_LIBS:BOOL=ON 20:22:16 20:22:16 //No help, variable specified on the command line. 20:22:16 CATKIN_BUILD_BINARY_PACKAGE:UNINITIALIZED=1 20:22:16 20:22:16 //Catkin enable testing 20:22:16 CATKIN_ENABLE_TESTING:BOOL=ON 20:22:16 20:22:16 //Prefix to apply to package generated via gendebian 20:22:16 CATKIN_PACKAGE_PREFIX:STRING= 20:22:16 20:22:16 //Catkin skip testing 20:22:16 CATKIN_SKIP_TESTING:BOOL=OFF 20:22:16 20:22:16 //Replace the CMake install command with a custom implementation 20:22:16 // using symlinks instead of copying resources 20:22:16 CATKIN_SYMLINK_INSTALL:BOOL=OFF 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_AR:FILEPATH=/usr/bin/ar 20:22:16 20:22:16 //Choose the type of build, options are: None(CMAKE_CXX_FLAGS or 20:22:16 // CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. 20:22:16 CMAKE_BUILD_TYPE:STRING=None 20:22:16 20:22:16 //Enable/Disable color output during build. 20:22:16 CMAKE_COLOR_MAKEFILE:BOOL=ON 20:22:16 20:22:16 //CXX compiler 20:22:16 CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ 20:22:16 20:22:16 //A wrapper around 'ar' adding the appropriate '--plugin' option 20:22:16 // for the GCC compiler 20:22:16 CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 20:22:16 20:22:16 //A wrapper around 'ranlib' adding the appropriate '--plugin' option 20:22:16 // for the GCC compiler 20:22:16 CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 20:22:16 20:22:16 //Flags used by the compiler during all build types. 20:22:16 CMAKE_CXX_FLAGS:STRING=-g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 20:22:16 20:22:16 //Flags used by the compiler during debug builds. 20:22:16 CMAKE_CXX_FLAGS_DEBUG:STRING=-g 20:22:16 20:22:16 //Flags used by the compiler during release builds for minimum 20:22:16 // size. 20:22:16 CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG 20:22:16 20:22:16 //Flags used by the compiler during release builds. 20:22:16 CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG 20:22:16 20:22:16 //Flags used by the compiler during release builds with debug info. 20:22:16 CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG 20:22:16 20:22:16 //C compiler 20:22:16 CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc 20:22:16 20:22:16 //A wrapper around 'ar' adding the appropriate '--plugin' option 20:22:16 // for the GCC compiler 20:22:16 CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 20:22:16 20:22:16 //A wrapper around 'ranlib' adding the appropriate '--plugin' option 20:22:16 // for the GCC compiler 20:22:16 CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 20:22:16 20:22:16 //Flags used by the compiler during all build types. 20:22:16 CMAKE_C_FLAGS:STRING=-g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 20:22:16 20:22:16 //Flags used by the compiler during debug builds. 20:22:16 CMAKE_C_FLAGS_DEBUG:STRING=-g 20:22:16 20:22:16 //Flags used by the compiler during release builds for minimum 20:22:16 // size. 20:22:16 CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG 20:22:16 20:22:16 //Flags used by the compiler during release builds. 20:22:16 CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG 20:22:16 20:22:16 //Flags used by the compiler during release builds with debug info. 20:22:16 CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG 20:22:16 20:22:16 //Flags used by the linker. 20:22:16 CMAKE_EXE_LINKER_FLAGS:STRING= 20:22:16 20:22:16 //Flags used by the linker during debug builds. 20:22:16 CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= 20:22:16 20:22:16 //Flags used by the linker during release minsize builds. 20:22:16 CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= 20:22:16 20:22:16 //Flags used by the linker during release builds. 20:22:16 CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= 20:22:16 20:22:16 //Flags used by the linker during Release with Debug Info builds. 20:22:16 CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= 20:22:16 20:22:16 //Enable/Disable output of compile commands during generation. 20:22:16 CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF 20:22:16 20:22:16 //No help, variable specified on the command line. 20:22:16 CMAKE_EXPORT_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON 20:22:16 20:22:16 //No help, variable specified on the command line. 20:22:16 CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY:UNINITIALIZED=ON 20:22:16 20:22:16 //No help, variable specified on the command line. 20:22:16 CMAKE_INSTALL_LOCALSTATEDIR:UNINITIALIZED=/var 20:22:16 20:22:16 //Install path prefix, prepended onto install directories. 20:22:16 CMAKE_INSTALL_PREFIX:PATH=/opt/ros/melodic 20:22:16 20:22:16 //No help, variable specified on the command line. 20:22:16 CMAKE_INSTALL_SYSCONFDIR:UNINITIALIZED=/etc 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_LINKER:FILEPATH=/usr/bin/ld 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make 20:22:16 20:22:16 //Flags used by the linker during the creation of modules. 20:22:16 CMAKE_MODULE_LINKER_FLAGS:STRING= 20:22:16 20:22:16 //Flags used by the linker during debug builds. 20:22:16 CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= 20:22:16 20:22:16 //Flags used by the linker during release minsize builds. 20:22:16 CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= 20:22:16 20:22:16 //Flags used by the linker during release builds. 20:22:16 CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= 20:22:16 20:22:16 //Flags used by the linker during Release with Debug Info builds. 20:22:16 CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_NM:FILEPATH=/usr/bin/nm 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump 20:22:16 20:22:16 //No help, variable specified on the command line. 20:22:16 CMAKE_PREFIX_PATH:UNINITIALIZED=/opt/ros/melodic 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 CMAKE_PROJECT_NAME:STATIC=spencer_tracking_rviz_plugin 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib 20:22:16 20:22:16 //Flags used by the linker during the creation of dll's. 20:22:16 CMAKE_SHARED_LINKER_FLAGS:STRING= 20:22:16 20:22:16 //Flags used by the linker during debug builds. 20:22:16 CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= 20:22:16 20:22:16 //Flags used by the linker during release minsize builds. 20:22:16 CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= 20:22:16 20:22:16 //Flags used by the linker during release builds. 20:22:16 CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= 20:22:16 20:22:16 //Flags used by the linker during Release with Debug Info builds. 20:22:16 CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= 20:22:16 20:22:16 //If set, runtime paths are not added when installing shared libraries, 20:22:16 // but are added when building. 20:22:16 CMAKE_SKIP_INSTALL_RPATH:BOOL=NO 20:22:16 20:22:16 //If set, runtime paths are not added when using shared libraries. 20:22:16 CMAKE_SKIP_RPATH:BOOL=NO 20:22:16 20:22:16 //Flags used by the linker during the creation of static libraries. 20:22:16 CMAKE_STATIC_LINKER_FLAGS:STRING= 20:22:16 20:22:16 //Flags used by the linker during debug builds. 20:22:16 CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= 20:22:16 20:22:16 //Flags used by the linker during release minsize builds. 20:22:16 CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= 20:22:16 20:22:16 //Flags used by the linker during release builds. 20:22:16 CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= 20:22:16 20:22:16 //Flags used by the linker during Release with Debug Info builds. 20:22:16 CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= 20:22:16 20:22:16 //Path to a program. 20:22:16 CMAKE_STRIP:FILEPATH=/usr/bin/strip 20:22:16 20:22:16 //If this value is on, makefiles will be generated without the 20:22:16 // .SILENT directive, and all commands will be echoed to the console 20:22:16 // during the make. This is useful for debugging only. With Visual 20:22:16 // Studio IDE projects all commands are done without /nologo. 20:22:16 CMAKE_VERBOSE_MAKEFILE:BOOL=ON 20:22:16 20:22:16 //Path to a program. 20:22:16 DOXYGEN_EXECUTABLE:FILEPATH=DOXYGEN_EXECUTABLE-NOTFOUND 20:22:16 20:22:16 //Path to a program. 20:22:16 EMPY_EXECUTABLE:FILEPATH=/usr/bin/empy 20:22:16 20:22:16 //Empy script 20:22:16 EMPY_SCRIPT:STRING=/usr/bin/empy 20:22:16 20:22:16 //The directory containing a CMake configuration file for GMock. 20:22:16 GMock_DIR:PATH=GMock_DIR-NOTFOUND 20:22:16 20:22:16 //Path to a file. 20:22:16 GTEST_INCLUDE_DIR:PATH=/usr/include 20:22:16 20:22:16 //Path to a library. 20:22:16 GTEST_LIBRARY:FILEPATH=GTEST_LIBRARY-NOTFOUND 20:22:16 20:22:16 //Path to a library. 20:22:16 GTEST_LIBRARY_DEBUG:FILEPATH=GTEST_LIBRARY_DEBUG-NOTFOUND 20:22:16 20:22:16 //Path to a library. 20:22:16 GTEST_MAIN_LIBRARY:FILEPATH=GTEST_MAIN_LIBRARY-NOTFOUND 20:22:16 20:22:16 //Path to a library. 20:22:16 GTEST_MAIN_LIBRARY_DEBUG:FILEPATH=GTEST_MAIN_LIBRARY_DEBUG-NOTFOUND 20:22:16 20:22:16 //lsb_release executable was found 20:22:16 LSB_FOUND:BOOL=TRUE 20:22:16 20:22:16 //Path to a program. 20:22:16 LSB_RELEASE_EXECUTABLE:FILEPATH=/usr/bin/lsb_release 20:22:16 20:22:16 //Path to a program. 20:22:16 NOSETESTS:FILEPATH=/usr/bin/nosetests-2.7 20:22:16 20:22:16 //Path to a program. 20:22:16 PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2 20:22:16 20:22:16 //Specify specific Python version to use ('major.minor' or 'major') 20:22:16 PYTHON_VERSION:STRING=2 20:22:16 20:22:16 //The directory containing a CMake configuration file for Qt5. 20:22:16 Qt5_DIR:PATH=Qt5_DIR-NOTFOUND 20:22:16 20:22:16 //Path to a library. 20:22:16 RT_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/librt.so 20:22:16 20:22:16 //Enable debian style python package layout 20:22:16 SETUPTOOLS_DEB_LAYOUT:BOOL=ON 20:22:16 20:22:16 //LSB Distrib tag 20:22:16 UBUNTU:BOOL=TRUE 20:22:16 20:22:16 //LSB Distrib - codename tag 20:22:16 UBUNTU_BIONIC:BOOL=TRUE 20:22:16 20:22:16 //Path to a file. 20:22:16 _gmock_INCLUDES:FILEPATH=/usr/include/gmock/gmock.h 20:22:16 20:22:16 //Path to a file. 20:22:16 _gmock_SOURCES:FILEPATH=/usr/src/gmock/src/gmock.cc 20:22:16 20:22:16 //Path to a file. 20:22:16 _gtest_INCLUDES:FILEPATH=/usr/include/gtest/gtest.h 20:22:16 20:22:16 //Path to a file. 20:22:16 _gtest_SOURCES:FILEPATH=/usr/src/gtest/src/gtest.cc 20:22:16 20:22:16 //The directory containing a CMake configuration file for actionlib. 20:22:16 actionlib_DIR:PATH=/opt/ros/melodic/share/actionlib/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for actionlib_msgs. 20:22:16 actionlib_msgs_DIR:PATH=/opt/ros/melodic/share/actionlib_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for catkin. 20:22:16 catkin_DIR:PATH=/opt/ros/melodic/share/catkin/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for class_loader. 20:22:16 class_loader_DIR:PATH=/opt/ros/melodic/share/class_loader/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for cpp_common. 20:22:16 cpp_common_DIR:PATH=/opt/ros/melodic/share/cpp_common/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for gencpp. 20:22:16 gencpp_DIR:PATH=/opt/ros/melodic/share/gencpp/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for geneus. 20:22:16 geneus_DIR:PATH=/opt/ros/melodic/share/geneus/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for genlisp. 20:22:16 genlisp_DIR:PATH=/opt/ros/melodic/share/genlisp/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for genmsg. 20:22:16 genmsg_DIR:PATH=/opt/ros/melodic/share/genmsg/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for gennodejs. 20:22:16 gennodejs_DIR:PATH=/opt/ros/melodic/share/gennodejs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for genpy. 20:22:16 genpy_DIR:PATH=/opt/ros/melodic/share/genpy/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for geometry_msgs. 20:22:16 geometry_msgs_DIR:PATH=/opt/ros/melodic/share/geometry_msgs/cmake 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 gmock_BINARY_DIR:STATIC=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/gtest/googlemock 20:22:16 20:22:16 //Dependencies for the target 20:22:16 gmock_LIB_DEPENDS:STATIC=general;-lpthread; 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 gmock_SOURCE_DIR:STATIC=/usr/src/googletest/googlemock 20:22:16 20:22:16 //Build all of Google Mock's own tests. 20:22:16 gmock_build_tests:BOOL=OFF 20:22:16 20:22:16 //Dependencies for the target 20:22:16 gmock_main_LIB_DEPENDS:STATIC=general;-lpthread; 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 googletest-distribution_BINARY_DIR:STATIC=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/gtest 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 googletest-distribution_SOURCE_DIR:STATIC=/usr/src/googletest 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 gtest_BINARY_DIR:STATIC=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/gtest/googlemock/gtest 20:22:16 20:22:16 //Dependencies for the target 20:22:16 gtest_LIB_DEPENDS:STATIC=general;-lpthread; 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 gtest_SOURCE_DIR:STATIC=/usr/src/googletest/googletest 20:22:16 20:22:16 //Build gtest's sample programs. 20:22:16 gtest_build_samples:BOOL=OFF 20:22:16 20:22:16 //Build all of gtest's own tests. 20:22:16 gtest_build_tests:BOOL=OFF 20:22:16 20:22:16 //Disable uses of pthreads in gtest. 20:22:16 gtest_disable_pthreads:BOOL=OFF 20:22:16 20:22:16 //Use shared (DLL) run-time lib even when Google Test is built 20:22:16 // as static lib. 20:22:16 gtest_force_shared_crt:BOOL=OFF 20:22:16 20:22:16 //Build gtest with internal symbols hidden in shared libraries. 20:22:16 gtest_hide_internal_symbols:BOOL=OFF 20:22:16 20:22:16 //Dependencies for the target 20:22:16 gtest_main_LIB_DEPENDS:STATIC=general;-lpthread;general;gtest; 20:22:16 20:22:16 //The directory containing a CMake configuration file for image_transport. 20:22:16 image_transport_DIR:PATH=/opt/ros/melodic/share/image_transport/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for interactive_markers. 20:22:16 interactive_markers_DIR:PATH=/opt/ros/melodic/share/interactive_markers/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for laser_geometry. 20:22:16 laser_geometry_DIR:PATH=/opt/ros/melodic/share/laser_geometry/cmake 20:22:16 20:22:16 //Path to a library. 20:22:16 lib:FILEPATH=/opt/ros/melodic/lib/librosconsole_bridge.so 20:22:16 20:22:16 //The directory containing a CMake configuration file for map_msgs. 20:22:16 map_msgs_DIR:PATH=/opt/ros/melodic/share/map_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for message_filters. 20:22:16 message_filters_DIR:PATH=/opt/ros/melodic/share/message_filters/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for message_generation. 20:22:16 message_generation_DIR:PATH=/opt/ros/melodic/share/message_generation/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for message_runtime. 20:22:16 message_runtime_DIR:PATH=/opt/ros/melodic/share/message_runtime/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for nav_msgs. 20:22:16 nav_msgs_DIR:PATH=/opt/ros/melodic/share/nav_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for pluginlib. 20:22:16 pluginlib_DIR:PATH=/opt/ros/melodic/share/pluginlib/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for resource_retriever. 20:22:16 resource_retriever_DIR:PATH=/opt/ros/melodic/share/resource_retriever/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rosconsole. 20:22:16 rosconsole_DIR:PATH=/opt/ros/melodic/share/rosconsole/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rosconsole_bridge. 20:22:16 rosconsole_bridge_DIR:PATH=/opt/ros/melodic/share/rosconsole_bridge/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for roscpp. 20:22:16 roscpp_DIR:PATH=/opt/ros/melodic/share/roscpp/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for roscpp_serialization. 20:22:16 roscpp_serialization_DIR:PATH=/opt/ros/melodic/share/roscpp_serialization/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for roscpp_traits. 20:22:16 roscpp_traits_DIR:PATH=/opt/ros/melodic/share/roscpp_traits/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rosgraph. 20:22:16 rosgraph_DIR:PATH=/opt/ros/melodic/share/rosgraph/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rosgraph_msgs. 20:22:16 rosgraph_msgs_DIR:PATH=/opt/ros/melodic/share/rosgraph_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for roslib. 20:22:16 roslib_DIR:PATH=/opt/ros/melodic/share/roslib/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rospack. 20:22:16 rospack_DIR:PATH=/opt/ros/melodic/share/rospack/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rospy. 20:22:16 rospy_DIR:PATH=/opt/ros/melodic/share/rospy/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rostime. 20:22:16 rostime_DIR:PATH=/opt/ros/melodic/share/rostime/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for rviz. 20:22:16 rviz_DIR:PATH=/opt/ros/melodic/share/rviz/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for sensor_msgs. 20:22:16 sensor_msgs_DIR:PATH=/opt/ros/melodic/share/sensor_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for spencer_human_attribute_msgs. 20:22:16 spencer_human_attribute_msgs_DIR:PATH=/opt/ros/melodic/share/spencer_human_attribute_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for spencer_social_relation_msgs. 20:22:16 spencer_social_relation_msgs_DIR:PATH=/opt/ros/melodic/share/spencer_social_relation_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for spencer_tracking_msgs. 20:22:16 spencer_tracking_msgs_DIR:PATH=/opt/ros/melodic/share/spencer_tracking_msgs/cmake 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 spencer_tracking_rviz_plugin_BINARY_DIR:STATIC=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu 20:22:16 20:22:16 //Value Computed by CMake 20:22:16 spencer_tracking_rviz_plugin_SOURCE_DIR:STATIC=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0 20:22:16 20:22:16 //The directory containing a CMake configuration file for std_msgs. 20:22:16 std_msgs_DIR:PATH=/opt/ros/melodic/share/std_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for std_srvs. 20:22:16 std_srvs_DIR:PATH=/opt/ros/melodic/share/std_srvs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for tf2. 20:22:16 tf2_DIR:PATH=/opt/ros/melodic/share/tf2/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for tf2_msgs. 20:22:16 tf2_msgs_DIR:PATH=/opt/ros/melodic/share/tf2_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for tf2_py. 20:22:16 tf2_py_DIR:PATH=/opt/ros/melodic/share/tf2_py/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for tf2_ros. 20:22:16 tf2_ros_DIR:PATH=/opt/ros/melodic/share/tf2_ros/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for tf. 20:22:16 tf_DIR:PATH=/opt/ros/melodic/share/tf/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for urdf. 20:22:16 urdf_DIR:PATH=/opt/ros/melodic/share/urdf/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for visualization_msgs. 20:22:16 visualization_msgs_DIR:PATH=/opt/ros/melodic/share/visualization_msgs/cmake 20:22:16 20:22:16 //The directory containing a CMake configuration file for xmlrpcpp. 20:22:16 xmlrpcpp_DIR:PATH=/opt/ros/melodic/share/xmlrpcpp/cmake 20:22:16 20:22:16 20:22:16 ######################## 20:22:16 # INTERNAL cache entries 20:22:16 ######################## 20:22:16 20:22:16 //catkin environment 20:22:16 CATKIN_ENV:INTERNAL=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh 20:22:16 CATKIN_TEST_RESULTS_DIR:INTERNAL=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/test_results 20:22:16 //ADVANCED property for variable: CMAKE_AR 20:22:16 CMAKE_AR-ADVANCED:INTERNAL=1 20:22:16 //This is the directory where this CMakeCache.txt was created 20:22:16 CMAKE_CACHEFILE_DIR:INTERNAL=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu 20:22:16 //Major version of cmake used to create the current loaded cache 20:22:16 CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 20:22:16 //Minor version of cmake used to create the current loaded cache 20:22:16 CMAKE_CACHE_MINOR_VERSION:INTERNAL=10 20:22:16 //Patch version of cmake used to create the current loaded cache 20:22:16 CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 20:22:16 //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE 20:22:16 CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 20:22:16 //Path to CMake executable. 20:22:16 CMAKE_COMMAND:INTERNAL=/usr/bin/cmake 20:22:16 //Path to cpack program executable. 20:22:16 CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack 20:22:16 //Path to ctest program executable. 20:22:16 CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest 20:22:16 //ADVANCED property for variable: CMAKE_CXX_COMPILER 20:22:16 CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR 20:22:16 CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB 20:22:16 CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_CXX_FLAGS 20:22:16 CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG 20:22:16 CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL 20:22:16 CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE 20:22:16 CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO 20:22:16 CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_COMPILER 20:22:16 CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_COMPILER_AR 20:22:16 CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB 20:22:16 CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_FLAGS 20:22:16 CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG 20:22:16 CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL 20:22:16 CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE 20:22:16 CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO 20:22:16 CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 20:22:16 //Executable file format 20:22:16 CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF 20:22:16 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS 20:22:16 CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG 20:22:16 CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL 20:22:16 CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE 20:22:16 CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO 20:22:16 CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS 20:22:16 CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 20:22:16 //Name of external makefile project generator. 20:22:16 CMAKE_EXTRA_GENERATOR:INTERNAL= 20:22:16 //Name of generator. 20:22:16 CMAKE_GENERATOR:INTERNAL=Unix Makefiles 20:22:16 //Name of generator platform. 20:22:16 CMAKE_GENERATOR_PLATFORM:INTERNAL= 20:22:16 //Name of generator toolset. 20:22:16 CMAKE_GENERATOR_TOOLSET:INTERNAL= 20:22:16 //Have symbol pthread_create 20:22:16 CMAKE_HAVE_LIBC_CREATE:INTERNAL= 20:22:16 //Have library pthreads 20:22:16 CMAKE_HAVE_PTHREADS_CREATE:INTERNAL= 20:22:16 //Have library pthread 20:22:16 CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1 20:22:16 //Have include pthread.h 20:22:16 CMAKE_HAVE_PTHREAD_H:INTERNAL=1 20:22:16 //Source directory with the top level CMakeLists.txt file for this 20:22:16 // project 20:22:16 CMAKE_HOME_DIRECTORY:INTERNAL=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0 20:22:16 //Install .so files without execute permission. 20:22:16 CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_LINKER 20:22:16 CMAKE_LINKER-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_MAKE_PROGRAM 20:22:16 CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS 20:22:16 CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG 20:22:16 CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL 20:22:16 CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE 20:22:16 CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO 20:22:16 CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_NM 20:22:16 CMAKE_NM-ADVANCED:INTERNAL=1 20:22:16 //number of local generators 20:22:16 CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 20:22:16 //ADVANCED property for variable: CMAKE_OBJCOPY 20:22:16 CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_OBJDUMP 20:22:16 CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 20:22:16 //Platform information initialized 20:22:16 CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_RANLIB 20:22:16 CMAKE_RANLIB-ADVANCED:INTERNAL=1 20:22:16 //Path to CMake installation. 20:22:16 CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.10 20:22:16 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS 20:22:16 CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG 20:22:16 CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL 20:22:16 CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE 20:22:16 CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO 20:22:16 CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH 20:22:16 CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_SKIP_RPATH 20:22:16 CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS 20:22:16 CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG 20:22:16 CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL 20:22:16 CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE 20:22:16 CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO 20:22:16 CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: CMAKE_STRIP 20:22:16 CMAKE_STRIP-ADVANCED:INTERNAL=1 20:22:16 //uname command 20:22:16 CMAKE_UNAME:INTERNAL=/bin/uname 20:22:16 //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE 20:22:16 CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 20:22:16 //Details about finding PythonInterp 20:22:16 FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[/usr/bin/python2][v2.7.17()] 20:22:16 //Details about finding Threads 20:22:16 FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] 20:22:16 GMOCK_FROM_SOURCE_FOUND:INTERNAL=TRUE 20:22:16 GMOCK_FROM_SOURCE_INCLUDE_DIRS:INTERNAL=/usr/include 20:22:16 GMOCK_FROM_SOURCE_LIBRARIES:INTERNAL=gmock 20:22:16 GMOCK_FROM_SOURCE_LIBRARY_DIRS:INTERNAL=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/gmock 20:22:16 GMOCK_FROM_SOURCE_MAIN_LIBRARIES:INTERNAL=gmock_main 20:22:16 GTEST_FROM_SOURCE_FOUND:INTERNAL=TRUE 20:22:16 GTEST_FROM_SOURCE_INCLUDE_DIRS:INTERNAL=/usr/include 20:22:16 GTEST_FROM_SOURCE_LIBRARIES:INTERNAL=gtest 20:22:16 GTEST_FROM_SOURCE_LIBRARY_DIRS:INTERNAL=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/gtest 20:22:16 GTEST_FROM_SOURCE_MAIN_LIBRARIES:INTERNAL=gtest_main 20:22:16 //ADVANCED property for variable: GTEST_INCLUDE_DIR 20:22:16 GTEST_INCLUDE_DIR-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: GTEST_LIBRARY 20:22:16 GTEST_LIBRARY-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: GTEST_LIBRARY_DEBUG 20:22:16 GTEST_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: GTEST_MAIN_LIBRARY 20:22:16 GTEST_MAIN_LIBRARY-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: GTEST_MAIN_LIBRARY_DEBUG 20:22:16 GTEST_MAIN_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 20:22:16 //ADVANCED property for variable: PYTHON_EXECUTABLE 20:22:16 PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1 20:22:16 //This needs to be in PYTHONPATH when 'setup.py install' is called. 20:22:16 // And it needs to match. But setuptools won't tell us where 20:22:16 // it will install things. 20:22:16 PYTHON_INSTALL_DIR:INTERNAL=lib/python2.7/dist-packages 20:22:16 20:22:16 cd obj-x86_64-linux-gnu && tail -v -n \+0 CMakeFiles/CMakeOutput.log 20:22:16 ==> CMakeFiles/CMakeOutput.log <== 20:22:16 The system is: Linux - 3.13.0-29-generic - x86_64 20:22:16 Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. 20:22:16 Compiler: /usr/bin/cc 20:22:16 Build flags: -g;-O2;-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.;-fstack-protector-strong;-Wformat;-Werror=format-security;-Wdate-time;-D_FORTIFY_SOURCE=2 20:22:16 Id flags: 20:22:16 20:22:16 The output was: 20:22:16 0 20:22:16 20:22:16 20:22:16 Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" 20:22:16 20:22:16 The C compiler identification is GNU, found in "/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/3.10.2/CompilerIdC/a.out" 20:22:16 20:22:16 Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. 20:22:16 Compiler: /usr/bin/c++ 20:22:16 Build flags: -g;-O2;-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.;-fstack-protector-strong;-Wformat;-Werror=format-security;-DNDEBUG;-Wdate-time;-D_FORTIFY_SOURCE=2 20:22:16 Id flags: 20:22:16 20:22:16 The output was: 20:22:16 0 20:22:16 20:22:16 20:22:16 Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" 20:22:16 20:22:16 The CXX compiler identification is GNU, found in "/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/3.10.2/CompilerIdCXX/a.out" 20:22:16 20:22:16 Determining if the C compiler works passed with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_48412/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_48412.dir/build.make CMakeFiles/cmTC_48412.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_48412.dir/testCCompiler.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_48412.dir/testCCompiler.c.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/testCCompiler.c 20:22:16 Linking C executable cmTC_48412 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_48412.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_48412.dir/testCCompiler.c.o -o cmTC_48412 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Detecting C compiler ABI info compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_06cba/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_06cba.dir/build.make CMakeFiles/cmTC_06cba.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c 20:22:16 Linking C executable cmTC_06cba 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06cba.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -v -rdynamic CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o -o cmTC_06cba 20:22:16 Using built-in specs. 20:22:16 COLLECT_GCC=/usr/bin/cc 20:22:16 COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper 20:22:16 OFFLOAD_TARGET_NAMES=nvptx-none 20:22:16 OFFLOAD_TARGET_DEFAULT=1 20:22:16 Target: x86_64-linux-gnu 20:22:16 Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu 20:22:16 Thread model: posix 20:22:16 gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) 20:22:16 COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ 20:22:16 LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ 20:22:16 COLLECT_GCC_OPTIONS='-g' '-O2' '-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-v' '-rdynamic' '-o' 'cmTC_06cba' '-mtune=generic' '-march=x86-64' 20:22:16 /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNgLrjv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_06cba /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o 20:22:16 COLLECT_GCC_OPTIONS='-g' '-O2' '-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-v' '-rdynamic' '-o' 'cmTC_06cba' '-mtune=generic' '-march=x86-64' 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Parsed C implicit link information from above output: 20:22:16 link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] 20:22:16 ignore line: [Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp] 20:22:16 ignore line: [] 20:22:16 ignore line: [Run Build Command:"/usr/bin/make" "cmTC_06cba/fast"] 20:22:16 ignore line: [make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'] 20:22:16 ignore line: [/usr/bin/make -f CMakeFiles/cmTC_06cba.dir/build.make CMakeFiles/cmTC_06cba.dir/build] 20:22:16 ignore line: [make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'] 20:22:16 ignore line: [Building C object CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o] 20:22:16 ignore line: [/usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.10/Modules/CMakeCCompilerABI.c] 20:22:16 ignore line: [Linking C executable cmTC_06cba] 20:22:16 ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_06cba.dir/link.txt --verbose=1] 20:22:16 ignore line: [/usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -v -rdynamic CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o -o cmTC_06cba ] 20:22:16 ignore line: [Using built-in specs.] 20:22:16 ignore line: [COLLECT_GCC=/usr/bin/cc] 20:22:16 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] 20:22:16 ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] 20:22:16 ignore line: [OFFLOAD_TARGET_DEFAULT=1] 20:22:16 ignore line: [Target: x86_64-linux-gnu] 20:22:16 ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] 20:22:16 ignore line: [Thread model: posix] 20:22:16 ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] 20:22:16 ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] 20:22:16 ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] 20:22:16 ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-v' '-rdynamic' '-o' 'cmTC_06cba' '-mtune=generic' '-march=x86-64'] 20:22:16 link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccNgLrjv.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_06cba /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore 20:22:16 arg [-plugin] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore 20:22:16 arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore 20:22:16 arg [-plugin-opt=-fresolution=/tmp/ccNgLrjv.res] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lc] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore 20:22:16 arg [--build-id] ==> ignore 20:22:16 arg [--eh-frame-hdr] ==> ignore 20:22:16 arg [-m] ==> ignore 20:22:16 arg [elf_x86_64] ==> ignore 20:22:16 arg [--hash-style=gnu] ==> ignore 20:22:16 arg [--as-needed] ==> ignore 20:22:16 arg [-export-dynamic] ==> ignore 20:22:16 arg [-dynamic-linker] ==> ignore 20:22:16 arg [/lib64/ld-linux-x86-64.so.2] ==> ignore 20:22:16 arg [-pie] ==> ignore 20:22:16 arg [-znow] ==> ignore 20:22:16 arg [-zrelro] ==> ignore 20:22:16 arg [-o] ==> ignore 20:22:16 arg [cmTC_06cba] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] 20:22:16 arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] 20:22:16 arg [-L/lib/../lib] ==> dir [/lib/../lib] 20:22:16 arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] 20:22:16 arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] 20:22:16 arg [CMakeFiles/cmTC_06cba.dir/CMakeCCompilerABI.c.o] ==> ignore 20:22:16 arg [-lgcc] ==> lib [gcc] 20:22:16 arg [--push-state] ==> ignore 20:22:16 arg [--as-needed] ==> ignore 20:22:16 arg [-lgcc_s] ==> lib [gcc_s] 20:22:16 arg [--pop-state] ==> ignore 20:22:16 arg [-lc] ==> lib [c] 20:22:16 arg [-lgcc] ==> lib [gcc] 20:22:16 arg [--push-state] ==> ignore 20:22:16 arg [--as-needed] ==> ignore 20:22:16 arg [-lgcc_s] ==> lib [gcc_s] 20:22:16 arg [--pop-state] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] 20:22:16 collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] 20:22:16 collapse library dir [/lib/../lib] ==> [/lib] 20:22:16 collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] 20:22:16 collapse library dir [/usr/lib/../lib] ==> [/usr/lib] 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] 20:22:16 implicit libs: [gcc;gcc_s;c;gcc;gcc_s] 20:22:16 implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] 20:22:16 implicit fwks: [] 20:22:16 20:22:16 20:22:16 20:22:16 20:22:16 Detecting C [-std=c11] compiler features compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_d2d8a/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_d2d8a.dir/build.make CMakeFiles/cmTC_d2d8a.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_d2d8a.dir/feature_tests.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c11 -o CMakeFiles/cmTC_d2d8a.dir/feature_tests.c.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.c 20:22:16 Linking C executable cmTC_d2d8a 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d2d8a.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_d2d8a.dir/feature_tests.c.o -o cmTC_d2d8a 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Feature record: C_FEATURE:1c_function_prototypes 20:22:16 Feature record: C_FEATURE:1c_restrict 20:22:16 Feature record: C_FEATURE:1c_static_assert 20:22:16 Feature record: C_FEATURE:1c_variadic_macros 20:22:16 20:22:16 20:22:16 Detecting C [-std=c99] compiler features compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_c607c/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_c607c.dir/build.make CMakeFiles/cmTC_c607c.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_c607c.dir/feature_tests.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c99 -o CMakeFiles/cmTC_c607c.dir/feature_tests.c.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.c 20:22:16 Linking C executable cmTC_c607c 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c607c.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_c607c.dir/feature_tests.c.o -o cmTC_c607c 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Feature record: C_FEATURE:1c_function_prototypes 20:22:16 Feature record: C_FEATURE:1c_restrict 20:22:16 Feature record: C_FEATURE:0c_static_assert 20:22:16 Feature record: C_FEATURE:1c_variadic_macros 20:22:16 20:22:16 20:22:16 Detecting C [-std=c90] compiler features compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_8d873/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_8d873.dir/build.make CMakeFiles/cmTC_8d873.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_8d873.dir/feature_tests.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -std=c90 -o CMakeFiles/cmTC_8d873.dir/feature_tests.c.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.c 20:22:16 Linking C executable cmTC_8d873 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8d873.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_8d873.dir/feature_tests.c.o -o cmTC_8d873 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Feature record: C_FEATURE:1c_function_prototypes 20:22:16 Feature record: C_FEATURE:0c_restrict 20:22:16 Feature record: C_FEATURE:0c_static_assert 20:22:16 Feature record: C_FEATURE:0c_variadic_macros 20:22:16 Determining if the CXX compiler works passed with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_a21ad/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_a21ad.dir/build.make CMakeFiles/cmTC_a21ad.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building CXX object CMakeFiles/cmTC_a21ad.dir/testCXXCompiler.cxx.o 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_a21ad.dir/testCXXCompiler.cxx.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/testCXXCompiler.cxx 20:22:16 Linking CXX executable cmTC_a21ad 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a21ad.dir/link.txt --verbose=1 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_a21ad.dir/testCXXCompiler.cxx.o -o cmTC_a21ad 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Detecting CXX compiler ABI info compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_bf313/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_bf313.dir/build.make CMakeFiles/cmTC_bf313.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building CXX object CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp 20:22:16 Linking CXX executable cmTC_bf313 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf313.dir/link.txt --verbose=1 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -v -rdynamic CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_bf313 20:22:16 Using built-in specs. 20:22:16 COLLECT_GCC=/usr/bin/c++ 20:22:16 COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper 20:22:16 OFFLOAD_TARGET_NAMES=nvptx-none 20:22:16 OFFLOAD_TARGET_DEFAULT=1 20:22:16 Target: x86_64-linux-gnu 20:22:16 Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu 20:22:16 Thread model: posix 20:22:16 gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) 20:22:16 COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ 20:22:16 LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ 20:22:16 COLLECT_GCC_OPTIONS='-g' '-O2' '-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-D' 'NDEBUG' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-v' '-rdynamic' '-o' 'cmTC_bf313' '-shared-libgcc' '-mtune=generic' '-march=x86-64' 20:22:16 /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc41QEXv.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_bf313 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o 20:22:16 COLLECT_GCC_OPTIONS='-g' '-O2' '-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-D' 'NDEBUG' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-v' '-rdynamic' '-o' 'cmTC_bf313' '-shared-libgcc' '-mtune=generic' '-march=x86-64' 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Parsed CXX implicit link information from above output: 20:22:16 link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] 20:22:16 ignore line: [Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp] 20:22:16 ignore line: [] 20:22:16 ignore line: [Run Build Command:"/usr/bin/make" "cmTC_bf313/fast"] 20:22:16 ignore line: [make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'] 20:22:16 ignore line: [/usr/bin/make -f CMakeFiles/cmTC_bf313.dir/build.make CMakeFiles/cmTC_bf313.dir/build] 20:22:16 ignore line: [make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp'] 20:22:16 ignore line: [Building CXX object CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o] 20:22:16 ignore line: [/usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.10/Modules/CMakeCXXCompilerABI.cpp] 20:22:16 ignore line: [Linking CXX executable cmTC_bf313] 20:22:16 ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf313.dir/link.txt --verbose=1] 20:22:16 ignore line: [/usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -v -rdynamic CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_bf313 ] 20:22:16 ignore line: [Using built-in specs.] 20:22:16 ignore line: [COLLECT_GCC=/usr/bin/c++] 20:22:16 ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] 20:22:16 ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] 20:22:16 ignore line: [OFFLOAD_TARGET_DEFAULT=1] 20:22:16 ignore line: [Target: x86_64-linux-gnu] 20:22:16 ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] 20:22:16 ignore line: [Thread model: posix] 20:22:16 ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] 20:22:16 ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] 20:22:16 ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] 20:22:16 ignore line: [COLLECT_GCC_OPTIONS='-g' '-O2' '-fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=.' '-fstack-protector-strong' '-Wformat=1' '-Werror=format-security' '-D' 'NDEBUG' '-Wdate-time' '-D' '_FORTIFY_SOURCE=2' '-v' '-rdynamic' '-o' 'cmTC_bf313' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] 20:22:16 link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc41QEXv.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_bf313 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore 20:22:16 arg [-plugin] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore 20:22:16 arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore 20:22:16 arg [-plugin-opt=-fresolution=/tmp/cc41QEXv.res] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lc] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore 20:22:16 arg [-plugin-opt=-pass-through=-lgcc] ==> ignore 20:22:16 arg [--build-id] ==> ignore 20:22:16 arg [--eh-frame-hdr] ==> ignore 20:22:16 arg [-m] ==> ignore 20:22:16 arg [elf_x86_64] ==> ignore 20:22:16 arg [--hash-style=gnu] ==> ignore 20:22:16 arg [--as-needed] ==> ignore 20:22:16 arg [-export-dynamic] ==> ignore 20:22:16 arg [-dynamic-linker] ==> ignore 20:22:16 arg [/lib64/ld-linux-x86-64.so.2] ==> ignore 20:22:16 arg [-pie] ==> ignore 20:22:16 arg [-znow] ==> ignore 20:22:16 arg [-zrelro] ==> ignore 20:22:16 arg [-o] ==> ignore 20:22:16 arg [cmTC_bf313] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] 20:22:16 arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] 20:22:16 arg [-L/lib/../lib] ==> dir [/lib/../lib] 20:22:16 arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] 20:22:16 arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] 20:22:16 arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] 20:22:16 arg [CMakeFiles/cmTC_bf313.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore 20:22:16 arg [-lstdc++] ==> lib [stdc++] 20:22:16 arg [-lm] ==> lib [m] 20:22:16 arg [-lgcc_s] ==> lib [gcc_s] 20:22:16 arg [-lgcc] ==> lib [gcc] 20:22:16 arg [-lc] ==> lib [c] 20:22:16 arg [-lgcc_s] ==> lib [gcc_s] 20:22:16 arg [-lgcc] ==> lib [gcc] 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore 20:22:16 arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] 20:22:16 collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] 20:22:16 collapse library dir [/lib/../lib] ==> [/lib] 20:22:16 collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] 20:22:16 collapse library dir [/usr/lib/../lib] ==> [/usr/lib] 20:22:16 collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] 20:22:16 implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] 20:22:16 implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] 20:22:16 implicit fwks: [] 20:22:16 20:22:16 20:22:16 20:22:16 20:22:16 Detecting CXX [-std=c++1z] compiler features compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_c9160/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_c9160.dir/build.make CMakeFiles/cmTC_c9160.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building CXX object CMakeFiles/cmTC_c9160.dir/feature_tests.cxx.o 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++1z -o CMakeFiles/cmTC_c9160.dir/feature_tests.cxx.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx 20:22:16 Linking CXX executable cmTC_c9160 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c9160.dir/link.txt --verbose=1 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_c9160.dir/feature_tests.cxx.o -o cmTC_c9160 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_alias_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_alignas 20:22:16 Feature record: CXX_FEATURE:1cxx_alignof 20:22:16 Feature record: CXX_FEATURE:1cxx_attributes 20:22:16 Feature record: CXX_FEATURE:1cxx_attribute_deprecated 20:22:16 Feature record: CXX_FEATURE:1cxx_auto_type 20:22:16 Feature record: CXX_FEATURE:1cxx_binary_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_constexpr 20:22:16 Feature record: CXX_FEATURE:1cxx_contextual_conversions 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype_auto 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types 20:22:16 Feature record: CXX_FEATURE:1cxx_default_function_template_args 20:22:16 Feature record: CXX_FEATURE:1cxx_defaulted_functions 20:22:16 Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_delegating_constructors 20:22:16 Feature record: CXX_FEATURE:1cxx_deleted_functions 20:22:16 Feature record: CXX_FEATURE:1cxx_digit_separators 20:22:16 Feature record: CXX_FEATURE:1cxx_enum_forward_declarations 20:22:16 Feature record: CXX_FEATURE:1cxx_explicit_conversions 20:22:16 Feature record: CXX_FEATURE:1cxx_extended_friend_declarations 20:22:16 Feature record: CXX_FEATURE:1cxx_extern_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_final 20:22:16 Feature record: CXX_FEATURE:1cxx_func_identifier 20:22:16 Feature record: CXX_FEATURE:1cxx_generalized_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_generic_lambdas 20:22:16 Feature record: CXX_FEATURE:1cxx_inheriting_constructors 20:22:16 Feature record: CXX_FEATURE:1cxx_inline_namespaces 20:22:16 Feature record: CXX_FEATURE:1cxx_lambdas 20:22:16 Feature record: CXX_FEATURE:1cxx_lambda_init_captures 20:22:16 Feature record: CXX_FEATURE:1cxx_local_type_template_args 20:22:16 Feature record: CXX_FEATURE:1cxx_long_long_type 20:22:16 Feature record: CXX_FEATURE:1cxx_noexcept 20:22:16 Feature record: CXX_FEATURE:1cxx_nonstatic_member_init 20:22:16 Feature record: CXX_FEATURE:1cxx_nullptr 20:22:16 Feature record: CXX_FEATURE:1cxx_override 20:22:16 Feature record: CXX_FEATURE:1cxx_range_for 20:22:16 Feature record: CXX_FEATURE:1cxx_raw_string_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_reference_qualified_functions 20:22:16 Feature record: CXX_FEATURE:1cxx_relaxed_constexpr 20:22:16 Feature record: CXX_FEATURE:1cxx_return_type_deduction 20:22:16 Feature record: CXX_FEATURE:1cxx_right_angle_brackets 20:22:16 Feature record: CXX_FEATURE:1cxx_rvalue_references 20:22:16 Feature record: CXX_FEATURE:1cxx_sizeof_member 20:22:16 Feature record: CXX_FEATURE:1cxx_static_assert 20:22:16 Feature record: CXX_FEATURE:1cxx_strong_enums 20:22:16 Feature record: CXX_FEATURE:1cxx_template_template_parameters 20:22:16 Feature record: CXX_FEATURE:1cxx_thread_local 20:22:16 Feature record: CXX_FEATURE:1cxx_trailing_return_types 20:22:16 Feature record: CXX_FEATURE:1cxx_unicode_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_uniform_initialization 20:22:16 Feature record: CXX_FEATURE:1cxx_unrestricted_unions 20:22:16 Feature record: CXX_FEATURE:1cxx_user_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_variable_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_variadic_macros 20:22:16 Feature record: CXX_FEATURE:1cxx_variadic_templates 20:22:16 20:22:16 20:22:16 Detecting CXX [-std=c++14] compiler features compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_7bc30/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_7bc30.dir/build.make CMakeFiles/cmTC_7bc30.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building CXX object CMakeFiles/cmTC_7bc30.dir/feature_tests.cxx.o 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++14 -o CMakeFiles/cmTC_7bc30.dir/feature_tests.cxx.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx 20:22:16 Linking CXX executable cmTC_7bc30 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7bc30.dir/link.txt --verbose=1 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_7bc30.dir/feature_tests.cxx.o -o cmTC_7bc30 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_alias_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_alignas 20:22:16 Feature record: CXX_FEATURE:1cxx_alignof 20:22:16 Feature record: CXX_FEATURE:1cxx_attributes 20:22:16 Feature record: CXX_FEATURE:1cxx_attribute_deprecated 20:22:16 Feature record: CXX_FEATURE:1cxx_auto_type 20:22:16 Feature record: CXX_FEATURE:1cxx_binary_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_constexpr 20:22:16 Feature record: CXX_FEATURE:1cxx_contextual_conversions 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype_auto 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types 20:22:16 Feature record: CXX_FEATURE:1cxx_default_function_template_args 20:22:16 Feature record: CXX_FEATURE:1cxx_defaulted_functions 20:22:16 Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_delegating_constructors 20:22:16 Feature record: CXX_FEATURE:1cxx_deleted_functions 20:22:16 Feature record: CXX_FEATURE:1cxx_digit_separators 20:22:16 Feature record: CXX_FEATURE:1cxx_enum_forward_declarations 20:22:16 Feature record: CXX_FEATURE:1cxx_explicit_conversions 20:22:16 Feature record: CXX_FEATURE:1cxx_extended_friend_declarations 20:22:16 Feature record: CXX_FEATURE:1cxx_extern_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_final 20:22:16 Feature record: CXX_FEATURE:1cxx_func_identifier 20:22:16 Feature record: CXX_FEATURE:1cxx_generalized_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_generic_lambdas 20:22:16 Feature record: CXX_FEATURE:1cxx_inheriting_constructors 20:22:16 Feature record: CXX_FEATURE:1cxx_inline_namespaces 20:22:16 Feature record: CXX_FEATURE:1cxx_lambdas 20:22:16 Feature record: CXX_FEATURE:1cxx_lambda_init_captures 20:22:16 Feature record: CXX_FEATURE:1cxx_local_type_template_args 20:22:16 Feature record: CXX_FEATURE:1cxx_long_long_type 20:22:16 Feature record: CXX_FEATURE:1cxx_noexcept 20:22:16 Feature record: CXX_FEATURE:1cxx_nonstatic_member_init 20:22:16 Feature record: CXX_FEATURE:1cxx_nullptr 20:22:16 Feature record: CXX_FEATURE:1cxx_override 20:22:16 Feature record: CXX_FEATURE:1cxx_range_for 20:22:16 Feature record: CXX_FEATURE:1cxx_raw_string_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_reference_qualified_functions 20:22:16 Feature record: CXX_FEATURE:1cxx_relaxed_constexpr 20:22:16 Feature record: CXX_FEATURE:1cxx_return_type_deduction 20:22:16 Feature record: CXX_FEATURE:1cxx_right_angle_brackets 20:22:16 Feature record: CXX_FEATURE:1cxx_rvalue_references 20:22:16 Feature record: CXX_FEATURE:1cxx_sizeof_member 20:22:16 Feature record: CXX_FEATURE:1cxx_static_assert 20:22:16 Feature record: CXX_FEATURE:1cxx_strong_enums 20:22:16 Feature record: CXX_FEATURE:1cxx_template_template_parameters 20:22:16 Feature record: CXX_FEATURE:1cxx_thread_local 20:22:16 Feature record: CXX_FEATURE:1cxx_trailing_return_types 20:22:16 Feature record: CXX_FEATURE:1cxx_unicode_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_uniform_initialization 20:22:16 Feature record: CXX_FEATURE:1cxx_unrestricted_unions 20:22:16 Feature record: CXX_FEATURE:1cxx_user_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_variable_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_variadic_macros 20:22:16 Feature record: CXX_FEATURE:1cxx_variadic_templates 20:22:16 20:22:16 20:22:16 Detecting CXX [-std=c++11] compiler features compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_70fc3/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_70fc3.dir/build.make CMakeFiles/cmTC_70fc3.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building CXX object CMakeFiles/cmTC_70fc3.dir/feature_tests.cxx.o 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++11 -o CMakeFiles/cmTC_70fc3.dir/feature_tests.cxx.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx 20:22:16 Linking CXX executable cmTC_70fc3 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_70fc3.dir/link.txt --verbose=1 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_70fc3.dir/feature_tests.cxx.o -o cmTC_70fc3 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_alias_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_alignas 20:22:16 Feature record: CXX_FEATURE:1cxx_alignof 20:22:16 Feature record: CXX_FEATURE:1cxx_attributes 20:22:16 Feature record: CXX_FEATURE:0cxx_attribute_deprecated 20:22:16 Feature record: CXX_FEATURE:1cxx_auto_type 20:22:16 Feature record: CXX_FEATURE:0cxx_binary_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_constexpr 20:22:16 Feature record: CXX_FEATURE:0cxx_contextual_conversions 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype 20:22:16 Feature record: CXX_FEATURE:0cxx_decltype_auto 20:22:16 Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types 20:22:16 Feature record: CXX_FEATURE:1cxx_default_function_template_args 20:22:16 Feature record: CXX_FEATURE:1cxx_defaulted_functions 20:22:16 Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers 20:22:16 Feature record: CXX_FEATURE:1cxx_delegating_constructors 20:22:16 Feature record: CXX_FEATURE:1cxx_deleted_functions 20:22:16 Feature record: CXX_FEATURE:0cxx_digit_separators 20:22:16 Feature record: CXX_FEATURE:1cxx_enum_forward_declarations 20:22:16 Feature record: CXX_FEATURE:1cxx_explicit_conversions 20:22:16 Feature record: CXX_FEATURE:1cxx_extended_friend_declarations 20:22:16 Feature record: CXX_FEATURE:1cxx_extern_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_final 20:22:16 Feature record: CXX_FEATURE:1cxx_func_identifier 20:22:16 Feature record: CXX_FEATURE:1cxx_generalized_initializers 20:22:16 Feature record: CXX_FEATURE:0cxx_generic_lambdas 20:22:16 Feature record: CXX_FEATURE:1cxx_inheriting_constructors 20:22:16 Feature record: CXX_FEATURE:1cxx_inline_namespaces 20:22:16 Feature record: CXX_FEATURE:1cxx_lambdas 20:22:16 Feature record: CXX_FEATURE:0cxx_lambda_init_captures 20:22:16 Feature record: CXX_FEATURE:1cxx_local_type_template_args 20:22:16 Feature record: CXX_FEATURE:1cxx_long_long_type 20:22:16 Feature record: CXX_FEATURE:1cxx_noexcept 20:22:16 Feature record: CXX_FEATURE:1cxx_nonstatic_member_init 20:22:16 Feature record: CXX_FEATURE:1cxx_nullptr 20:22:16 Feature record: CXX_FEATURE:1cxx_override 20:22:16 Feature record: CXX_FEATURE:1cxx_range_for 20:22:16 Feature record: CXX_FEATURE:1cxx_raw_string_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_reference_qualified_functions 20:22:16 Feature record: CXX_FEATURE:0cxx_relaxed_constexpr 20:22:16 Feature record: CXX_FEATURE:0cxx_return_type_deduction 20:22:16 Feature record: CXX_FEATURE:1cxx_right_angle_brackets 20:22:16 Feature record: CXX_FEATURE:1cxx_rvalue_references 20:22:16 Feature record: CXX_FEATURE:1cxx_sizeof_member 20:22:16 Feature record: CXX_FEATURE:1cxx_static_assert 20:22:16 Feature record: CXX_FEATURE:1cxx_strong_enums 20:22:16 Feature record: CXX_FEATURE:1cxx_template_template_parameters 20:22:16 Feature record: CXX_FEATURE:1cxx_thread_local 20:22:16 Feature record: CXX_FEATURE:1cxx_trailing_return_types 20:22:16 Feature record: CXX_FEATURE:1cxx_unicode_literals 20:22:16 Feature record: CXX_FEATURE:1cxx_uniform_initialization 20:22:16 Feature record: CXX_FEATURE:1cxx_unrestricted_unions 20:22:16 Feature record: CXX_FEATURE:1cxx_user_literals 20:22:16 Feature record: CXX_FEATURE:0cxx_variable_templates 20:22:16 Feature record: CXX_FEATURE:1cxx_variadic_macros 20:22:16 Feature record: CXX_FEATURE:1cxx_variadic_templates 20:22:16 20:22:16 20:22:16 Detecting CXX [-std=c++98] compiler features compiled with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_18c0c/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_18c0c.dir/build.make CMakeFiles/cmTC_18c0c.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building CXX object CMakeFiles/cmTC_18c0c.dir/feature_tests.cxx.o 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=c++98 -o CMakeFiles/cmTC_18c0c.dir/feature_tests.cxx.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/feature_tests.cxx 20:22:16 Linking CXX executable cmTC_18c0c 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_18c0c.dir/link.txt --verbose=1 20:22:16 /usr/bin/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_18c0c.dir/feature_tests.cxx.o -o cmTC_18c0c 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers 20:22:16 Feature record: CXX_FEATURE:0cxx_alias_templates 20:22:16 Feature record: CXX_FEATURE:0cxx_alignas 20:22:16 Feature record: CXX_FEATURE:0cxx_alignof 20:22:16 Feature record: CXX_FEATURE:0cxx_attributes 20:22:16 Feature record: CXX_FEATURE:0cxx_attribute_deprecated 20:22:16 Feature record: CXX_FEATURE:0cxx_auto_type 20:22:16 Feature record: CXX_FEATURE:0cxx_binary_literals 20:22:16 Feature record: CXX_FEATURE:0cxx_constexpr 20:22:16 Feature record: CXX_FEATURE:0cxx_contextual_conversions 20:22:16 Feature record: CXX_FEATURE:0cxx_decltype 20:22:16 Feature record: CXX_FEATURE:0cxx_decltype_auto 20:22:16 Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types 20:22:16 Feature record: CXX_FEATURE:0cxx_default_function_template_args 20:22:16 Feature record: CXX_FEATURE:0cxx_defaulted_functions 20:22:16 Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers 20:22:16 Feature record: CXX_FEATURE:0cxx_delegating_constructors 20:22:16 Feature record: CXX_FEATURE:0cxx_deleted_functions 20:22:16 Feature record: CXX_FEATURE:0cxx_digit_separators 20:22:16 Feature record: CXX_FEATURE:0cxx_enum_forward_declarations 20:22:16 Feature record: CXX_FEATURE:0cxx_explicit_conversions 20:22:16 Feature record: CXX_FEATURE:0cxx_extended_friend_declarations 20:22:16 Feature record: CXX_FEATURE:0cxx_extern_templates 20:22:16 Feature record: CXX_FEATURE:0cxx_final 20:22:16 Feature record: CXX_FEATURE:0cxx_func_identifier 20:22:16 Feature record: CXX_FEATURE:0cxx_generalized_initializers 20:22:16 Feature record: CXX_FEATURE:0cxx_generic_lambdas 20:22:16 Feature record: CXX_FEATURE:0cxx_inheriting_constructors 20:22:16 Feature record: CXX_FEATURE:0cxx_inline_namespaces 20:22:16 Feature record: CXX_FEATURE:0cxx_lambdas 20:22:16 Feature record: CXX_FEATURE:0cxx_lambda_init_captures 20:22:16 Feature record: CXX_FEATURE:0cxx_local_type_template_args 20:22:16 Feature record: CXX_FEATURE:0cxx_long_long_type 20:22:16 Feature record: CXX_FEATURE:0cxx_noexcept 20:22:16 Feature record: CXX_FEATURE:0cxx_nonstatic_member_init 20:22:16 Feature record: CXX_FEATURE:0cxx_nullptr 20:22:16 Feature record: CXX_FEATURE:0cxx_override 20:22:16 Feature record: CXX_FEATURE:0cxx_range_for 20:22:16 Feature record: CXX_FEATURE:0cxx_raw_string_literals 20:22:16 Feature record: CXX_FEATURE:0cxx_reference_qualified_functions 20:22:16 Feature record: CXX_FEATURE:0cxx_relaxed_constexpr 20:22:16 Feature record: CXX_FEATURE:0cxx_return_type_deduction 20:22:16 Feature record: CXX_FEATURE:0cxx_right_angle_brackets 20:22:16 Feature record: CXX_FEATURE:0cxx_rvalue_references 20:22:16 Feature record: CXX_FEATURE:0cxx_sizeof_member 20:22:16 Feature record: CXX_FEATURE:0cxx_static_assert 20:22:16 Feature record: CXX_FEATURE:0cxx_strong_enums 20:22:16 Feature record: CXX_FEATURE:1cxx_template_template_parameters 20:22:16 Feature record: CXX_FEATURE:0cxx_thread_local 20:22:16 Feature record: CXX_FEATURE:0cxx_trailing_return_types 20:22:16 Feature record: CXX_FEATURE:0cxx_unicode_literals 20:22:16 Feature record: CXX_FEATURE:0cxx_uniform_initialization 20:22:16 Feature record: CXX_FEATURE:0cxx_unrestricted_unions 20:22:16 Feature record: CXX_FEATURE:0cxx_user_literals 20:22:16 Feature record: CXX_FEATURE:0cxx_variable_templates 20:22:16 Feature record: CXX_FEATURE:0cxx_variadic_macros 20:22:16 Feature record: CXX_FEATURE:0cxx_variadic_templates 20:22:16 Determining if the include file pthread.h exists passed with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_22761/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_22761.dir/build.make CMakeFiles/cmTC_22761.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_22761.dir/CheckIncludeFile.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_22761.dir/CheckIncludeFile.c.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckIncludeFile.c 20:22:16 Linking C executable cmTC_22761 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_22761.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_22761.dir/CheckIncludeFile.c.o -o cmTC_22761 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 Determining if the function pthread_create exists in the pthread passed with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_fe537/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_fe537.dir/build.make CMakeFiles/cmTC_fe537.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_fe537.dir/CheckFunctionExists.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_fe537.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c 20:22:16 Linking C executable cmTC_fe537 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_fe537.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_fe537.dir/CheckFunctionExists.c.o -o cmTC_fe537 -lpthread 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 cd obj-x86_64-linux-gnu && tail -v -n \+0 CMakeFiles/CMakeError.log 20:22:16 ==> CMakeFiles/CMakeError.log <== 20:22:16 Determining if the pthread_create exist failed with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_bf601/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_bf601.dir/build.make CMakeFiles/cmTC_bf601.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_bf601.dir/CheckSymbolExists.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o CMakeFiles/cmTC_bf601.dir/CheckSymbolExists.c.o -c /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckSymbolExists.c 20:22:16 Linking C executable cmTC_bf601 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_bf601.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/cmTC_bf601.dir/CheckSymbolExists.c.o -o cmTC_bf601 20:22:16 CMakeFiles/cmTC_bf601.dir/CheckSymbolExists.c.o: In function `main': 20:22:16 ./obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/./obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckSymbolExists.c:8: undefined reference to `pthread_create' 20:22:16 collect2: error: ld returned 1 exit status 20:22:16 CMakeFiles/cmTC_bf601.dir/build.make:97: recipe for target 'cmTC_bf601' failed 20:22:16 make[3]: *** [cmTC_bf601] Error 1 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Makefile:126: recipe for target 'cmTC_bf601/fast' failed 20:22:16 make[2]: *** [cmTC_bf601/fast] Error 2 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 File /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp/CheckSymbolExists.c: 20:22:16 /* */ 20:22:16 #include <pthread.h> 20:22:16 20:22:16 int main(int argc, char** argv) 20:22:16 { 20:22:16 (void)argv; 20:22:16 #ifndef pthread_create 20:22:16 return ((int*)(&pthread_create))[argc]; 20:22:16 #else 20:22:16 (void)argc; 20:22:16 return 0; 20:22:16 #endif 20:22:16 } 20:22:16 20:22:16 Determining if the function pthread_create exists in the pthreads failed with the following output: 20:22:16 Change Dir: /tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp 20:22:16 20:22:16 Run Build Command:"/usr/bin/make" "cmTC_51120/fast" 20:22:16 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 /usr/bin/make -f CMakeFiles/cmTC_51120.dir/build.make CMakeFiles/cmTC_51120.dir/build 20:22:16 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Building C object CMakeFiles/cmTC_51120.dir/CheckFunctionExists.c.o 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_51120.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.10/Modules/CheckFunctionExists.c 20:22:16 Linking C executable cmTC_51120 20:22:16 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_51120.dir/link.txt --verbose=1 20:22:16 /usr/bin/cc -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_51120.dir/CheckFunctionExists.c.o -o cmTC_51120 -lpthreads 20:22:16 /usr/bin/ld: cannot find -lpthreads 20:22:16 collect2: error: ld returned 1 exit status 20:22:16 CMakeFiles/cmTC_51120.dir/build.make:97: recipe for target 'cmTC_51120' failed 20:22:16 make[3]: *** [cmTC_51120] Error 1 20:22:16 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 Makefile:126: recipe for target 'cmTC_51120/fast' failed 20:22:16 make[2]: *** [cmTC_51120/fast] Error 2 20:22:16 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0/obj-x86_64-linux-gnu/CMakeFiles/CMakeTmp' 20:22:16 20:22:16 20:22:16 debian/rules:25: recipe for target 'override_dh_auto_configure' failed 20:22:16 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-spencer-tracking-rviz-plugin-1.2.0' 20:22:16 debian/rules:22: recipe for target 'build' failed 20:22:16 dh_auto_configure: 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 -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic -DCMAKE_PREFIX_PATH=/opt/ros/melodic returned exit code 1 20:22:16 make[1]: *** [override_dh_auto_configure] Error 2 20:22:16 make: *** [build] Error 2 20:22:16 dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2 20:22:16 E: Building failed 20:22:16 Traceback (most recent call last): 20:22:16 File "/tmp/ros_buildfarm/ros_buildfarm/binarydeb_job.py", line 138, in build_binarydeb 20:22:16 subprocess.check_call(cmd, cwd=source_dir) 20:22:16 File "/usr/lib/python3.6/subprocess.py", line 311, in check_call 20:22:16 raise CalledProcessError(retcode, cmd) 20:22:16 subprocess.CalledProcessError: Command '['apt-src', 'build', 'ros-melodic-spencer-tracking-rviz-plugin']' returned non-zero exit status 1. 20:22:16 # END SUBSECTION
20:22:16 20:22:16 -------------------------------------------------------------------------------------------------- 20:22:16 `apt-src build ros-melodic-spencer-tracking-rviz-plugin` failed. 20:22:16 This is usually because of an error building the package. 20:22:16 The traceback from this failure (just above) is printed for completeness, but you can ignore it. 20:22:16 You should look above `E: Building failed` in the build log for the actual cause of the failure. 20:22:16 -------------------------------------------------------------------------------------------------- 20:22:16 20:22:16 Build step 'Execute shell' marked build as failure 20:22:16 $ ssh-agent -k 20:22:16 unset SSH_AUTH_SOCK; 20:22:16 unset SSH_AGENT_PID; 20:22:16 echo Agent pid 3717 killed; 20:22:16 [ssh-agent] Stopped. 20:22:22 [description-setter] Could not determine description. 20:22:22 Sending e-mails to: lcas-build-farm@googlegroups.com 20:22:22 Finished: FAILURE