久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Cartographer安装

發布時間:2025/4/16 编程问答 13 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Cartographer安装 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

請注意本文的安裝日期2017/12/20,如果距離該時間很遙遠,請僅作為參考,畢竟cartographer的代碼在不斷更新,可能會存在很大的變動。

參考文檔:

https://google-cartographer.readthedocs.io/en/latest/

https://google-cartographer-ros.readthedocs.io/en/latest/

http://www.cnblogs.com/liangyf0312/p/8028441.html

1.?先裝好wstool、rosdep、ninja

2.?建工作空間

3.?下載cartographer、cartographer_ros、ceres源碼。這里也下載了rplidar的代碼(略)。

https://github.com/ceres-solver/ceres-solver

https://github.com/googlecartographer/cartographer

https://github.com/googlecartographer/cartographer_ros

yhexie@ubuntu:~$ sudo apt-get install -y python-wstool python-rosdep ninja-build[sudo] password for yhexie: Reading package lists... Done Building dependency tree Reading state information... Done python-rosdep is already the newest version (0.11.8-1). python-rosdep set to manually installed. python-wstool is already the newest version (0.1.13-1). The following NEW packages will be installed:ninja-build 0 upgraded, 1 newly installed, 0 to remove and 340 not upgraded. Need to get 84.8 kB of archives. After this operation, 271 kB of additional disk space will be used. Get:1 http://us.archive.ubuntu.com/ubuntu xenial/universe amd64 ninja-build amd64 1.5.1-0.1ubuntu1 [84.8 kB] Fetched 84.8 kB in 3s (22.0 kB/s) Selecting previously unselected package ninja-build. (Reading database ... 231935 files and directories currently installed.) Preparing to unpack .../ninja-build_1.5.1-0.1ubuntu1_amd64.deb ... Unpacking ninja-build (1.5.1-0.1ubuntu1) ... Processing triggers for man-db (2.7.5-1) ... Setting up ninja-build (1.5.1-0.1ubuntu1) ... yhexie@ubuntu:~$ mkdir catkin_ws yhexie@ubuntu:~$ cd catkin_ws yhexie@ubuntu:~/catkin_ws$ wstool init src Writing /home/yhexie/catkin_ws/src/.rosinstallupdate complete. yhexie@ubuntu:~/catkin_ws$ cd ./src yhexie@ubuntu:~/catkin_ws/src$ git clone https://github.com/googlecartographer/cartographer Cloning into 'cartographer'... remote: Counting objects: 6657, done. remote: Compressing objects: 100% (65/65), done. remote: Total 6657 (delta 49), reused 45 (delta 25), pack-reused 6566 Receiving objects: 100% (6657/6657), 2.77 MiB | 110.00 KiB/s, done. Resolving deltas: 100% (5324/5324), done. Checking connectivity... done. yhexie@ubuntu:~/catkin_ws/src$ git clone https://github.com/googlecartographer/cartographer_ros Cloning into 'cartographer_ros'... remote: Counting objects: 2816, done. remote: Compressing objects: 100% (8/8), done. remote: Total 2816 (delta 3), reused 0 (delta 0), pack-reused 2808 Receiving objects: 100% (2816/2816), 826.08 KiB | 14.00 KiB/s, done. Resolving deltas: 100% (2044/2044), done. Checking connectivity... done. yhexie@ubuntu:~/catkin_ws/src$ git clone https://github.com/ceres-solver/ceres-solver Cloning into 'ceres-solver'... remote: Counting objects: 10659, done. remote: Compressing objects: 100% (25/25), done. remote: Total 10659 (delta 12), reused 22 (delta 8), pack-reused 10622 Receiving objects: 100% (10659/10659), 11.78 MiB | 24.00 KiB/s, done. Resolving deltas: 100% (6437/6437), done. Checking connectivity... done.

4. 安裝proto3

yhexie@ubuntu:~$ '/home/yhexie/catkin_ws/src/cartographer/scripts/install_proto3.sh' VERSION="v3.4.1"# Build and install proto3. git clone https://github.com/google/protobuf.git Cloning into 'protobuf'... remote: Counting objects: 49432, done. remote: Compressing objects: 100% (37/37), done. remote: Total 49432 (delta 16), reused 13 (delta 4), pack-reused 49387 Receiving objects: 100% (49432/49432), 42.16 MiB | 13.00 KiB/s, done. Resolving deltas: 100% (33298/33298), done. Checking connectivity... done. cd protobuf git checkout tags/${VERSION} Note: checking out 'tags/v3.4.1'.You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by performing another checkout.If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command again. Example:git checkout -b <new-branch-name>HEAD is now at b04e5cb... Merge pull request #3642 from pherl/3.4.x mkdir build cd build cmake -G Ninja \-DCMAKE_POSITION_INDEPENDENT_CODE=ON \-DCMAKE_BUILD_TYPE=Release \-Dprotobuf_BUILD_TESTS=OFF \../cmake -- The C compiler identification is GNU 5.4.0 -- The CXX compiler identification is GNU 5.4.0 -- Check for working C compiler using: Ninja -- Check for working C compiler using: Ninja -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler using: Ninja -- Check for working CXX compiler using: Ninja -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.2.8") -- Configuring done -- Generating done -- Build files have been written to: /home/yhexie/protobuf/build ninja [206/206] Linking CXX executable protoc sudo ninja install [sudo] password for yhexie: Sorry, try again. [sudo] password for yhexie: [1/1] Install the project... -- Install configuration: "Release" -- Installing: /usr/local/lib/libprotobuf-lite.a -- Installing: /usr/local/lib/libprotobuf.a -- Installing: /usr/local/lib/libprotoc.a -- Installing: /usr/local/bin/protoc -- Installing: /usr/local/lib/pkgconfig/protobuf.pc -- Installing: /usr/local/lib/pkgconfig/protobuf-lite.pc -- Installing: /usr/local/include/google/protobuf/any.h -- Installing: /usr/local/include/google/protobuf/any.pb.h -- Installing: /usr/local/include/google/protobuf/api.pb.h -- Installing: /usr/local/include/google/protobuf/arena.h -- Installing: /usr/local/include/google/protobuf/arena_impl.h -- Installing: /usr/local/include/google/protobuf/arenastring.h -- Installing: /usr/local/include/google/protobuf/compiler/code_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/command_line_interface.h -- Installing: /usr/local/include/google/protobuf/compiler/cpp/cpp_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/csharp/csharp_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/csharp/csharp_names.h -- Installing: /usr/local/include/google/protobuf/compiler/importer.h -- Installing: /usr/local/include/google/protobuf/compiler/java/java_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/java/java_names.h -- Installing: /usr/local/include/google/protobuf/compiler/javanano/javanano_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/js/js_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/js/well_known_types_embed.h -- Installing: /usr/local/include/google/protobuf/compiler/objectivec/objectivec_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -- Installing: /usr/local/include/google/protobuf/compiler/parser.h -- Installing: /usr/local/include/google/protobuf/compiler/php/php_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/plugin.h -- Installing: /usr/local/include/google/protobuf/compiler/plugin.pb.h -- Installing: /usr/local/include/google/protobuf/compiler/python/python_generator.h -- Installing: /usr/local/include/google/protobuf/compiler/ruby/ruby_generator.h -- Installing: /usr/local/include/google/protobuf/descriptor.h -- Installing: /usr/local/include/google/protobuf/descriptor.pb.h -- Installing: /usr/local/include/google/protobuf/descriptor_database.h -- Installing: /usr/local/include/google/protobuf/duration.pb.h -- Installing: /usr/local/include/google/protobuf/dynamic_message.h -- Installing: /usr/local/include/google/protobuf/empty.pb.h -- Installing: /usr/local/include/google/protobuf/extension_set.h -- Installing: /usr/local/include/google/protobuf/field_mask.pb.h -- Installing: /usr/local/include/google/protobuf/generated_enum_reflection.h -- Installing: /usr/local/include/google/protobuf/generated_enum_util.h -- Installing: /usr/local/include/google/protobuf/generated_message_reflection.h -- Installing: /usr/local/include/google/protobuf/generated_message_table_driven.h -- Installing: /usr/local/include/google/protobuf/generated_message_util.h -- Installing: /usr/local/include/google/protobuf/has_bits.h -- Installing: /usr/local/include/google/protobuf/io/coded_stream.h -- Installing: /usr/local/include/google/protobuf/io/gzip_stream.h -- Installing: /usr/local/include/google/protobuf/io/printer.h -- Installing: /usr/local/include/google/protobuf/io/strtod.h -- Installing: /usr/local/include/google/protobuf/io/tokenizer.h -- Installing: /usr/local/include/google/protobuf/io/zero_copy_stream.h -- Installing: /usr/local/include/google/protobuf/io/zero_copy_stream_impl.h -- Installing: /usr/local/include/google/protobuf/io/zero_copy_stream_impl_lite.h -- Installing: /usr/local/include/google/protobuf/map.h -- Installing: /usr/local/include/google/protobuf/map_entry.h -- Installing: /usr/local/include/google/protobuf/map_entry_lite.h -- Installing: /usr/local/include/google/protobuf/map_field.h -- Installing: /usr/local/include/google/protobuf/map_field_inl.h -- Installing: /usr/local/include/google/protobuf/map_field_lite.h -- Installing: /usr/local/include/google/protobuf/map_type_handler.h -- Installing: /usr/local/include/google/protobuf/message.h -- Installing: /usr/local/include/google/protobuf/message_lite.h -- Installing: /usr/local/include/google/protobuf/metadata.h -- Installing: /usr/local/include/google/protobuf/metadata_lite.h -- Installing: /usr/local/include/google/protobuf/reflection.h -- Installing: /usr/local/include/google/protobuf/reflection_ops.h -- Installing: /usr/local/include/google/protobuf/repeated_field.h -- Installing: /usr/local/include/google/protobuf/service.h -- Installing: /usr/local/include/google/protobuf/source_context.pb.h -- Installing: /usr/local/include/google/protobuf/struct.pb.h -- Installing: /usr/local/include/google/protobuf/stubs/atomic_sequence_num.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_atomicword_compat.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_power.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_ppc_gcc.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_solaris.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_tsan.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h -- Installing: /usr/local/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h -- Installing: /usr/local/include/google/protobuf/stubs/bytestream.h -- Installing: /usr/local/include/google/protobuf/stubs/callback.h -- Installing: /usr/local/include/google/protobuf/stubs/casts.h -- Installing: /usr/local/include/google/protobuf/stubs/common.h -- Installing: /usr/local/include/google/protobuf/stubs/fastmem.h -- Installing: /usr/local/include/google/protobuf/stubs/hash.h -- Installing: /usr/local/include/google/protobuf/stubs/logging.h -- Installing: /usr/local/include/google/protobuf/stubs/macros.h -- Installing: /usr/local/include/google/protobuf/stubs/mutex.h -- Installing: /usr/local/include/google/protobuf/stubs/once.h -- Installing: /usr/local/include/google/protobuf/stubs/platform_macros.h -- Installing: /usr/local/include/google/protobuf/stubs/port.h -- Installing: /usr/local/include/google/protobuf/stubs/scoped_ptr.h -- Installing: /usr/local/include/google/protobuf/stubs/shared_ptr.h -- Installing: /usr/local/include/google/protobuf/stubs/singleton.h -- Installing: /usr/local/include/google/protobuf/stubs/status.h -- Installing: /usr/local/include/google/protobuf/stubs/stl_util.h -- Installing: /usr/local/include/google/protobuf/stubs/stringpiece.h -- Installing: /usr/local/include/google/protobuf/stubs/template_util.h -- Installing: /usr/local/include/google/protobuf/stubs/type_traits.h -- Installing: /usr/local/include/google/protobuf/text_format.h -- Installing: /usr/local/include/google/protobuf/timestamp.pb.h -- Installing: /usr/local/include/google/protobuf/type.pb.h -- Installing: /usr/local/include/google/protobuf/unknown_field_set.h -- Installing: /usr/local/include/google/protobuf/util/delimited_message_util.h -- Installing: /usr/local/include/google/protobuf/util/field_comparator.h -- Installing: /usr/local/include/google/protobuf/util/field_mask_util.h -- Installing: /usr/local/include/google/protobuf/util/json_util.h -- Installing: /usr/local/include/google/protobuf/util/message_differencer.h -- Installing: /usr/local/include/google/protobuf/util/time_util.h -- Installing: /usr/local/include/google/protobuf/util/type_resolver.h -- Installing: /usr/local/include/google/protobuf/util/type_resolver_util.h -- Installing: /usr/local/include/google/protobuf/wire_format.h -- Installing: /usr/local/include/google/protobuf/wire_format_lite.h -- Installing: /usr/local/include/google/protobuf/wire_format_lite_inl.h -- Installing: /usr/local/include/google/protobuf/wrappers.pb.h -- Installing: /usr/local/include/google/protobuf/descriptor.proto -- Installing: /usr/local/include/google/protobuf/any.proto -- Installing: /usr/local/include/google/protobuf/api.proto -- Installing: /usr/local/include/google/protobuf/duration.proto -- Installing: /usr/local/include/google/protobuf/empty.proto -- Installing: /usr/local/include/google/protobuf/field_mask.proto -- Installing: /usr/local/include/google/protobuf/source_context.proto -- Installing: /usr/local/include/google/protobuf/struct.proto -- Installing: /usr/local/include/google/protobuf/timestamp.proto -- Installing: /usr/local/include/google/protobuf/type.proto -- Installing: /usr/local/include/google/protobuf/wrappers.proto -- Installing: /usr/local/include/google/protobuf/compiler/plugin.proto -- Installing: /usr/local/lib/cmake/protobuf/protobuf-targets.cmake -- Installing: /usr/local/lib/cmake/protobuf/protobuf-targets-release.cmake -- Up-to-date: /usr/local/lib/cmake/protobuf -- Installing: /usr/local/lib/cmake/protobuf/protobuf-config-version.cmake -- Installing: /usr/local/lib/cmake/protobuf/protobuf-options.cmake -- Installing: /usr/local/lib/cmake/protobuf/protobuf-config.cmake -- Installing: /usr/local/lib/cmake/protobuf/protobuf-module.cmake

5. 安裝依賴庫

  libgoogle-glog-dev ?libsuitesparse-dev ?ninja-build(已經安裝)

sudo apt-get update sudo apt-get install -y \cmake \g++ \git \google-mock \libboost-all-dev \libcairo2-dev \libeigen3-dev \libgflags-dev \libgoogle-glog-dev \liblua5.2-dev \libsuitesparse-dev \ninja-build \python-sphinx

?安裝5過程如下:

yhexie@ubuntu:~/catkin_ws$ sudo apt-get install -y \ > cmake \ > g++ \ > git \ > google-mock \ > libboost-all-dev \ > libcairo2-dev \ > libeigen3-dev \ > libgflags-dev \ > libgoogle-glog-dev \ > liblua5.2-dev \ > libsuitesparse-dev \ > ninja-build \ > python-sphinx Reading package lists... Done Building dependency tree Reading state information... Done g++ is already the newest version (4:5.3.1-1ubuntu1). g++ set to manually installed. libcairo2-dev is already the newest version (1.14.6-1). libcairo2-dev set to manually installed. liblua5.2-dev is already the newest version (5.2.4-1ubuntu1). libsuitesparse-dev is already the newest version (1:4.4.6-1). libboost-all-dev is already the newest version (1.58.0.1ubuntu1). libboost-all-dev set to manually installed. libeigen3-dev is already the newest version (3.3~beta1-2). libeigen3-dev set to manually installed. libgflags-dev is already the newest version (2.1.2-3). libgflags-dev set to manually installed. libgoogle-glog-dev is already the newest version (0.3.4-0.1). ninja-build is already the newest version (1.5.1-0.1ubuntu1). cmake is already the newest version (3.5.1-1ubuntu3). cmake set to manually installed. git is already the newest version (1:2.7.4-0ubuntu1.3). git set to manually installed. Suggested packages:python-jinja2-doc libjs-mathjax dvipng texlive-latex-recommendedtexlive-latex-extra texlive-fonts-recommended The following NEW packages will be installed:fonts-font-awesome google-mock libjs-modernizr python-alabaster python-babelpython-babel-localedata python-jinja2 python-markupsafe python-sphinxpython-sphinx-rtd-theme sphinx-common sphinx-doc sphinx-rtd-theme-common 0 upgraded, 13 newly installed, 0 to remove and 340 not upgraded. Need to get 4,885 kB of archives. After this operation, 23.1 MB of additional disk space will be used. Get:1 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 fonts-font-awesome all 4.5.0~dfsg-1 [506 kB] Get:2 http://us.archive.ubuntu.com/ubuntu xenial/universe amd64 google-mock amd64 1.7.0-18092013-1 [116 kB] Get:3 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 python-babel-localedata all 1.3+dfsg.1-6 [1,931 kB] Get:4 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 python-babel all 1.3+dfsg.1-6 [70.4 kB] Get:5 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 python-markupsafe amd64 0.23-2build2 [15.5 kB] Get:6 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 python-jinja2 all 2.8-1 [109 kB] Get:7 http://us.archive.ubuntu.com/ubuntu xenial/universe amd64 python-alabaster all 0.7.7-1 [16.8 kB] Get:8 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 libjs-modernizr all 2.6.2+ds1-1ubuntu1 [46.7 kB] Get:9 http://us.archive.ubuntu.com/ubuntu xenial/main amd64 sphinx-rtd-theme-common all 0.1.9-1 [210 kB] Get:10 http://us.archive.ubuntu.com/ubuntu xenial/universe amd64 python-sphinx-rtd-theme all 0.1.9-1 [13.6 kB] Get:11 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 sphinx-common all 1.3.6-2ubuntu1.1 [324 kB] Get:12 http://us.archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-sphinx all 1.3.6-2ubuntu1.1 [401 kB] Get:13 http://us.archive.ubuntu.com/ubuntu xenial-updates/main amd64 sphinx-doc all 1.3.6-2ubuntu1.1 [1,126 kB] Fetched 4,885 kB in 38s (129 kB/s) Selecting previously unselected package fonts-font-awesome. (Reading database ... 232187 files and directories currently installed.) Preparing to unpack .../fonts-font-awesome_4.5.0~dfsg-1_all.deb ... Unpacking fonts-font-awesome (4.5.0~dfsg-1) ... Selecting previously unselected package google-mock:amd64. Preparing to unpack .../google-mock_1.7.0-18092013-1_amd64.deb ... Unpacking google-mock:amd64 (1.7.0-18092013-1) ... Selecting previously unselected package python-babel-localedata. Preparing to unpack .../python-babel-localedata_1.3+dfsg.1-6_all.deb ... Unpacking python-babel-localedata (1.3+dfsg.1-6) ... Selecting previously unselected package python-babel. Preparing to unpack .../python-babel_1.3+dfsg.1-6_all.deb ... Unpacking python-babel (1.3+dfsg.1-6) ... Selecting previously unselected package python-markupsafe. Preparing to unpack .../python-markupsafe_0.23-2build2_amd64.deb ... Unpacking python-markupsafe (0.23-2build2) ... Selecting previously unselected package python-jinja2. Preparing to unpack .../python-jinja2_2.8-1_all.deb ... Unpacking python-jinja2 (2.8-1) ... Selecting previously unselected package python-alabaster. Preparing to unpack .../python-alabaster_0.7.7-1_all.deb ... Unpacking python-alabaster (0.7.7-1) ... Selecting previously unselected package libjs-modernizr. Preparing to unpack .../libjs-modernizr_2.6.2+ds1-1ubuntu1_all.deb ... Unpacking libjs-modernizr (2.6.2+ds1-1ubuntu1) ... Selecting previously unselected package sphinx-rtd-theme-common. Preparing to unpack .../sphinx-rtd-theme-common_0.1.9-1_all.deb ... Unpacking sphinx-rtd-theme-common (0.1.9-1) ... Selecting previously unselected package python-sphinx-rtd-theme. Preparing to unpack .../python-sphinx-rtd-theme_0.1.9-1_all.deb ... Unpacking python-sphinx-rtd-theme (0.1.9-1) ... Selecting previously unselected package sphinx-common. Preparing to unpack .../sphinx-common_1.3.6-2ubuntu1.1_all.deb ... Unpacking sphinx-common (1.3.6-2ubuntu1.1) ... Selecting previously unselected package python-sphinx. Preparing to unpack .../python-sphinx_1.3.6-2ubuntu1.1_all.deb ... Unpacking python-sphinx (1.3.6-2ubuntu1.1) ... Selecting previously unselected package sphinx-doc. Preparing to unpack .../sphinx-doc_1.3.6-2ubuntu1.1_all.deb ... Unpacking sphinx-doc (1.3.6-2ubuntu1.1) ... Processing triggers for fontconfig (2.11.94-0ubuntu1.1) ... Processing triggers for man-db (2.7.5-1) ... Setting up fonts-font-awesome (4.5.0~dfsg-1) ... Setting up google-mock:amd64 (1.7.0-18092013-1) ... Setting up python-babel-localedata (1.3+dfsg.1-6) ... Setting up python-babel (1.3+dfsg.1-6) ... update-alternatives: using /usr/bin/pybabel-python2 to provide /usr/bin/pybabel (pybabel) in auto mode Setting up python-markupsafe (0.23-2build2) ... Setting up python-jinja2 (2.8-1) ... Setting up python-alabaster (0.7.7-1) ... Setting up libjs-modernizr (2.6.2+ds1-1ubuntu1) ... Setting up sphinx-rtd-theme-common (0.1.9-1) ... Setting up python-sphinx-rtd-theme (0.1.9-1) ... Setting up sphinx-common (1.3.6-2ubuntu1.1) ... Setting up python-sphinx (1.3.6-2ubuntu1.1) ... Setting up sphinx-doc (1.3.6-2ubuntu1.1) ...

6. 編譯過程如下:

yhexie@ubuntu:~/catkin_ws$ catkin_make_isolated --install --use-ninja Base path: /home/yhexie/catkin_ws Source space: /home/yhexie/catkin_ws/src Build space: /home/yhexie/catkin_ws/build_isolated Devel space: /home/yhexie/catkin_ws/devel_isolated Install space: /home/yhexie/catkin_ws/install_isolated ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ traversing 6 packages in topological order: ~~ - cartographer_ros_msgs ~~ - ceres-solver (plain cmake) ~~ - cartographer (plain cmake) ~~ - cartographer_ros ~~ - cartographer_rviz ~~ - rplidar_ros ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~==> Processing catkin package: 'cartographer_ros_msgs' build.ninja exists, skipping explicit cmake invocation... ==> ninja build.ninja in '/home/yhexie/catkin_ws/build_isolated/cartographer_ros_msgs' ninja: no work to do. ==> ninja -j1 -l1 in '/home/yhexie/catkin_ws/build_isolated/cartographer_ros_msgs' [9/9] cd /home/yhexie/catkin_ws/build_...artographer_ros_msgs/TrajectoryOptions ==> ninja install in '/home/yhexie/catkin_ws/build_isolated/cartographer_ros_msgs' [10/10] Install the project... -- Install configuration: "" -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/_setup_util.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/env.sh -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/setup.bash -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/setup.sh -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/setup.zsh -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/.rosinstall -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/msg/SubmapList.msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/msg/SubmapEntry.msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/msg/SubmapTexture.msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/msg/SensorTopics.msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/msg/TrajectoryOptions.msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/srv/SubmapQuery.srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/srv/FinishTrajectory.srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/srv/StartTrajectory.srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/srv/WriteState.srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/cmake/cartographer_ros_msgs-msg-paths.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/TrajectoryOptions.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/SensorTopics.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/SubmapQueryResponse.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/SubmapList.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/WriteState.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/WriteStateRequest.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/FinishTrajectory.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/FinishTrajectoryResponse.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/SubmapTexture.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/SubmapEntry.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/StartTrajectoryResponse.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/StartTrajectoryRequest.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/WriteStateResponse.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/StartTrajectory.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/SubmapQuery.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/FinishTrajectoryRequest.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros_msgs/SubmapQueryRequest.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/manifest.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/msg/SensorTopics.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/msg/SubmapEntry.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/msg/TrajectoryOptions.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/msg/SubmapList.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/msg/SubmapTexture.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/srv/SubmapQuery.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/srv/FinishTrajectory.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/srv/WriteState.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/roseus/ros/cartographer_ros_msgs/srv/StartTrajectory.l -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/_package.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/_package_SensorTopics.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/_package_SubmapList.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/SubmapEntry.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/SensorTopics.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/_package_TrajectoryOptions.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/_package_SubmapTexture.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/cartographer_ros_msgs-msg.asd -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/TrajectoryOptions.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/SubmapTexture.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/_package_SubmapEntry.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/msg/SubmapList.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/_package.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/_package_StartTrajectory.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/_package_SubmapQuery.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/cartographer_ros_msgs-srv.asd -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/_package_WriteState.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/SubmapQuery.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/FinishTrajectory.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/StartTrajectory.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/WriteState.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/common-lisp/ros/cartographer_ros_msgs/srv/_package_FinishTrajectory.lisp -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/_index.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/msg/TrajectoryOptions.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/msg/SensorTopics.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/msg/_index.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/msg/SubmapTexture.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/msg/SubmapList.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/msg/SubmapEntry.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/srv/SubmapQuery.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/srv/WriteState.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/srv/_index.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/srv/FinishTrajectory.js -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/gennodejs/ros/cartographer_ros_msgs/srv/StartTrajectory.js Listing /home/yhexie/catkin_ws/devel_isolated/cartographer_ros_msgs/lib/python2.7/dist-packages/cartographer_ros_msgs ... Listing /home/yhexie/catkin_ws/devel_isolated/cartographer_ros_msgs/lib/python2.7/dist-packages/cartographer_ros_msgs/msg ... Listing /home/yhexie/catkin_ws/devel_isolated/cartographer_ros_msgs/lib/python2.7/dist-packages/cartographer_ros_msgs/srv ... -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SubmapList.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SensorTopics.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SubmapTexture.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SensorTopics.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SubmapEntry.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_TrajectoryOptions.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/__init__.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_TrajectoryOptions.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SubmapList.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SubmapTexture.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/__init__.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/msg/_SubmapEntry.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_FinishTrajectory.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_WriteState.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_SubmapQuery.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_WriteState.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_SubmapQuery.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/__init__.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_StartTrajectory.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/__init__.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_StartTrajectory.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/srv/_FinishTrajectory.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/__init__.py -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/python2.7/dist-packages/cartographer_ros_msgs/__init__.pyc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/pkgconfig/cartographer_ros_msgs.pc -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/cmake/cartographer_ros_msgs-msg-extras.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/cmake/cartographer_ros_msgsConfig.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/cmake/cartographer_ros_msgsConfig-version.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros_msgs/package.xml <== Finished processing package [1 of 6]: 'cartographer_ros_msgs'==> Processing plain cmake package: 'ceres-solver' ==> Building with env: '/home/yhexie/catkin_ws/install_isolated/env.sh' build.ninja exists, skipping explicit cmake invocation... ==> ninja build.ninja in '/home/yhexie/catkin_ws/build_isolated/ceres-solver/install' ninja: no work to do. ==> ninja -j1 -l1 in '/home/yhexie/catkin_ws/build_isolated/ceres-solver/install' ninja: no work to do. ==> ninja install in '/home/yhexie/catkin_ws/build_isolated/ceres-solver/install' [1/1] Install the project... -- Install configuration: "Release" -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/local_parameterization.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/ordered_groups.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/gradient_checker.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/covariance.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/sized_cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/cubic_interpolation.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/types.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/problem.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/loss_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/numeric_diff_options.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/dynamic_cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/normal_prior.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/iteration_callback.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/autodiff_local_parameterization.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/tiny_solver_autodiff_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/rotation.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/fpclassify.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/gradient_problem.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/autodiff_cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/tiny_solver_cost_function_adapter.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/version.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/dynamic_cost_function_to_functor.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/conditioned_cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/cost_function_to_functor.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/jet.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/dynamic_autodiff_cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/crs_matrix.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/solver.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/dynamic_numeric_diff_cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/gradient_problem_solver.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/ceres.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/numeric_diff_cost_function.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/tiny_solver.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/c_api.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/fixed_array.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/macros.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/port.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/autodiff.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/manual_constructor.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/disable_warnings.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/scoped_ptr.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/eigen.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/reenable_warnings.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/numeric_diff.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/variadic_evaluate.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/include/ceres/internal/config.h -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/cmake/Ceres/CeresTargets.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/cmake/Ceres/CeresTargets-release.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/cmake/Ceres/CeresConfig.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/cmake/Ceres/CeresConfigVersion.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/cmake/Ceres/FindEigen.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/cmake/Ceres/FindGlog.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/cmake/Ceres/FindGflags.cmake -- Up-to-date: /home/yhexie/catkin_ws/install_isolated/lib/libceres.a <== Finished processing package [2 of 6]: 'ceres-solver'==> Processing plain cmake package: 'cartographer' ==> Building with env: '/home/yhexie/catkin_ws/install_isolated/env.sh' ==> cmake /home/yhexie/catkin_ws/src/cartographer -DCMAKE_INSTALL_PREFIX=/home/yhexie/catkin_ws/install_isolated -G Ninja in '/home/yhexie/catkin_ws/build_isolated/cartographer/install' -- Build type: Release -- Found PythonInterp: /usr/bin/python (found version "2.7.12") -- Found GMock: gmock_main;-lpthread -- Boost version: 1.58.0 -- Found the following Boost libraries: -- iostreams -- regex -- Found installed version of Eigen: /usr/lib/cmake/eigen3 -- Found required Ceres dependency: Eigen version 3.2.92 in /usr/include/eigen3 -- Found required Ceres dependency: glog -- Found Ceres version: 1.13.0 installed in: /home/yhexie/catkin_ws/install_isolated with components: [EigenSparse, SparseLinearAlgebraLibrary, LAPACK, SchurSpecializations, OpenMP, Multithreading] -- Found Sphinx: /usr/bin/sphinx-build -- Configuring done -- Generating done -- Build files have been written to: /home/yhexie/catkin_ws/build_isolated/cartographer/install ==> ninja -j1 -l1 in '/home/yhexie/catkin_ws/build_isolated/cartographer/install' [273/273] Building documentation. Running Sphinx v1.3.6 making output directory... loading pickled environment... not yet created building [mo]: targets for 0 po files that are out of date building [html]: targets for 3 source files that are out of date updating environment: 3 added, 0 changed, 0 removed reading sources... [ 33%] configuration reading sources... [ 66%] index reading sources... [100%] terminologylooking for now-outdated files... none found pickling environment... done checking consistency... done preparing documents... done writing output... [ 33%] configuration writing output... [ 66%] index writing output... [100%] terminologygenerating indices... genindex writing additional pages... search copying images... [100%] high_level_system_overview.pngcopying static files... WARNING: html_static_path entry u'/home/yhexie/catkin_ws/src/cartographer/docs/source/_static' does not exist done copying extra files... done dumping search index in English (code: en) ... done dumping object inventory... done build succeeded, 1 warning. ==> ninja install in '/home/yhexie/catkin_ws/build_isolated/cartographer/install' [2/3] Building documentation. Running Sphinx v1.3.6 loading pickled environment... done building [mo]: targets for 0 po files that are out of date building [html]: targets for 0 source files that are out of date updating environment: 0 added, 0 changed, 0 removed looking for now-outdated files... none found no targets are out of date. build succeeded. [3/3] Install the project... -- Install configuration: "Release" -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer/package.xml -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//configuration_files -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//configuration_files/trajectory_builder_2d.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//configuration_files/trajectory_builder.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//configuration_files/trajectory_builder_3d.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//configuration_files/map_builder.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//configuration_files/map_builder_server.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//configuration_files/pose_graph.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//cmake/functions.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//cmake/modules -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//cmake/modules/FindLuaGoogle.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//cmake/modules/FindGMock.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer//cmake/modules/FindSphinx.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_autogenerate_ground_truth -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_compute_relations_metrics -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/libcartographer.a -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/make_unique.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/lua_parameter_dictionary.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/lua_parameter_dictionary_test_helpers.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/histogram.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/port.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/configuration_file_resolver.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/lua.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/ceres_solver_options.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/math.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/fixed_ratio_sampler.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/time.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/mutex.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/blocking_queue.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/thread_pool.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/rate_timer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/transform/transform_interpolation_buffer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/transform/rigid_transform_test_helpers.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/transform/transform.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/transform/rigid_transform.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/transform/timestamped_transform.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/range_data_inserter.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/probability_grid.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/pose_graph.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/pose_graph/optimization_problem.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/pose_graph/spa_cost_function.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/pose_graph/constraint_builder.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/xy_index.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/real_time_correlative_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/rotation_delta_cost_functor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/translation_delta_cost_functor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/fast_correlative_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/correlative_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/fast_global_localizer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/ceres_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/ray_casting.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/map_limits.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/local_trajectory_builder_options.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/submaps.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/test_helpers.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/point_cloud.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/imu_data.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/voxel_filter.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/data.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/compressed_point_cloud.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/map_by_time.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/landmark_data.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/range_data.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/collator.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/odometry_data.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/ordered_multi_queue.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/timed_point_cloud_data.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/fixed_frame_pose_data.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/range_data_inserter.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/ceres_pose.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/pose_graph.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/pose_graph/optimization_problem.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/pose_graph/spa_cost_function.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/pose_graph/constraint_builder.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/rotation_parameterization.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/imu_integration.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/rotational_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/real_time_correlative_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/interpolated_grid.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/precomputation_grid.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/low_resolution_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/rotation_delta_cost_functor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/translation_delta_cost_functor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/fast_correlative_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/ceres_scan_matcher.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/hybrid_grid.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/local_trajectory_builder_options.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/submaps.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/imu_tracker.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/map_builder_interface.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_extrapolator.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/detect_floors.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_graph.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_graph_interface.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/trajectory_connectivity_state.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/trajectory_builder_interface.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_graph/optimization_problem_options.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_graph/constraint_builder.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/id.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/probability_values.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/trajectory_node.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/collated_trajectory_builder.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/submaps.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/map_builder.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/connected_components.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_graph_trimmer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/intensity_to_color_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/pcd_writing_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/fixed_ratio_sampling_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/outlier_removing_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/null_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/color.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/min_max_range_filtering_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/probability_grid_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/proto_stream.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/frame_id_filtering_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/ply_writing_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/xyz_writing_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/image.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/submap_painter.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/file_writer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/coloring_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/points_batch.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/hybrid_grid_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/draw_trajectories.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/points_processor_pipeline_builder.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/counting_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/io/xray_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/ground_truth/relations_text_file.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/common/proto/ceres_solver_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/transform/proto/transform.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/proto/ceres_scan_matcher_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/proto/fast_correlative_scan_matcher_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/scan_matching/proto/real_time_correlative_scan_matcher_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/proto/submaps_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/proto/map_limits.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/proto/local_trajectory_builder_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/proto/range_data_inserter_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/proto/probability_grid.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_2d/proto/cell_limits.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/proto/adaptive_voxel_filter_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/sensor/proto/sensor.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/proto/ceres_scan_matcher_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/scan_matching/proto/fast_correlative_scan_matcher_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/proto/submaps_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/proto/local_trajectory_builder_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/proto/range_data_inserter_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping_3d/proto/hybrid_grid.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_graph/proto/constraint_builder_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/pose_graph/proto/optimization_problem_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/trajectory_builder_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/submap.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/pose_graph.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/trajectory.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/connected_components.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/pose_graph_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/serialization.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/trajectory_node_data.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/submap_visualization.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/motion_filter_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/mapping/proto/map_builder_options.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer/ground_truth/proto/relations.pb.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer/cmake/CartographerTargets.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer/cmake/CartographerTargets-release.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer/cartographer-config.cmake <== Finished processing package [3 of 6]: 'cartographer'==> Processing catkin package: 'cartographer_ros' ==> Creating build directory: 'build_isolated/cartographer_ros' ==> Building with env: '/home/yhexie/catkin_ws/install_isolated/env.sh' ==> cmake /home/yhexie/catkin_ws/src/cartographer_ros/cartographer_ros -DCATKIN_DEVEL_PREFIX=/home/yhexie/catkin_ws/devel_isolated/cartographer_ros -DCMAKE_INSTALL_PREFIX=/home/yhexie/catkin_ws/install_isolated -G Ninja in '/home/yhexie/catkin_ws/build_isolated/cartographer_ros' -- The C compiler identification is GNU 5.4.0 -- The CXX compiler identification is GNU 5.4.0 -- Check for working C compiler using: Ninja -- Check for working C compiler using: Ninja -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler using: Ninja -- Check for working CXX compiler using: Ninja -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Found installed version of Eigen: /usr/lib/cmake/eigen3 -- Found required Ceres dependency: Eigen version 3.2.92 in /usr/include/eigen3 -- Found required Ceres dependency: glog -- Found Ceres version: 1.13.0 installed in: /home/yhexie/catkin_ws/install_isolated with components: [EigenSparse, SparseLinearAlgebraLibrary, LAPACK, SchurSpecializations, OpenMP, Multithreading] -- Build type: Release Files /home/yhexie/catkin_ws/build_isolated/cartographer_ros/AllFiles.cmake and - differ -- Found PythonInterp: /usr/bin/python (found version "2.7.12") -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found GMock: gmock_main;-lpthread -- Using CATKIN_DEVEL_PREFIX: /home/yhexie/catkin_ws/devel_isolated/cartographer_ros -- Using CMAKE_PREFIX_PATH: /home/yhexie/catkin_ws/install_isolated;/opt/ros/kinetic -- This workspace overlays: /home/yhexie/catkin_ws/install_isolated;/opt/ros/kinetic -- Using PYTHON_EXECUTABLE: /usr/bin/python -- Using Debian Python package layout -- Using empy: /usr/bin/empy -- Using CATKIN_ENABLE_TESTING: ON -- Call enable_testing() -- Using CATKIN_TEST_RESULTS_DIR: /home/yhexie/catkin_ws/build_isolated/cartographer_ros/test_results -- Using Python nosetests: /usr/bin/nosetests-2.7 -- catkin 0.7.8 -- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy -- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1") -- Found Lua: /usr/lib/x86_64-linux-gnu/liblua5.2.so;/usr/lib/x86_64-linux-gnu/libm.so (found version "5.2.4") -- Checking for module 'eigen3' -- Found eigen3, version 3.2.92 -- Found eigen: /usr/include/eigen3 -- Boost version: 1.58.0 -- Found the following Boost libraries: -- system -- filesystem -- thread -- date_time -- iostreams -- serialization -- chrono -- atomic -- regex -- looking for PCL_COMMON -- Found PCL_COMMON: /usr/lib/x86_64-linux-gnu/libpcl_common.so -- Found PCL: /usr/lib/x86_64-linux-gnu/libboost_system.so;/usr/lib/x86_64-linux-gnu/libboost_filesystem.so;/usr/lib/x86_64-linux-gnu/libboost_thread.so;/usr/lib/x86_64-linux-gnu/libboost_date_time.so;/usr/lib/x86_64-linux-gnu/libboost_iostreams.so;/usr/lib/x86_64-linux-gnu/libboost_serialization.so;/usr/lib/x86_64-linux-gnu/libboost_chrono.so;/usr/lib/x86_64-linux-gnu/libboost_atomic.so;/usr/lib/x86_64-linux-gnu/libboost_regex.so;/usr/lib/x86_64-linux-gnu/libpthread.so;optimized;/usr/lib/x86_64-linux-gnu/libpcl_common.so;debug;/usr/lib/x86_64-linux-gnu/libpcl_common.so;/usr/lib/x86_64-linux-gnu/libboost_system.so;/usr/lib/x86_64-linux-gnu/libboost_filesystem.so;/usr/lib/x86_64-linux-gnu/libboost_thread.so;/usr/lib/x86_64-linux-gnu/libboost_date_time.so;/usr/lib/x86_64-linux-gnu/libboost_iostreams.so;/usr/lib/x86_64-linux-gnu/libboost_serialization.so;/usr/lib/x86_64-linux-gnu/libboost_chrono.so;/usr/lib/x86_64-linux-gnu/libboost_atomic.so;/usr/lib/x86_64-linux-gnu/libboost_regex.so;/usr/lib/x86_64-linux-gnu/libpthread.so -- Boost version: 1.58.0 -- Found the following Boost libraries: -- system -- iostreams -- regex -- Configuring done -- Generating done -- Build files have been written to: /home/yhexie/catkin_ws/build_isolated/cartographer_ros ==> ninja -j1 -l1 in '/home/yhexie/catkin_ws/build_isolated/cartographer_ros' [43/43] Linking CXX executable /home/y...r_ros/cartographer_pbstream_to_ros_map ==> ninja install in '/home/yhexie/catkin_ws/build_isolated/cartographer_ros' [2/2] Install the project... -- Install configuration: "Release" -- Installing: /home/yhexie/catkin_ws/install_isolated/_setup_util.py -- Installing: /home/yhexie/catkin_ws/install_isolated/env.sh -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.bash -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.sh -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.zsh -- Installing: /home/yhexie/catkin_ws/install_isolated/.rosinstall -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/pkgconfig/cartographer_ros.pc -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/cmake/cartographer_rosConfig.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/cmake/cartographer_rosConfig-version.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/package.xml -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/assets_writer_backpack_3d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/backpack_3d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/demo_backpack_2d_localization.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/demo_backpack_3d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/demo_taurob_tracker.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/demo_revo_lds.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/demo_backpack_2d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/assets_writer_backpack_2d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/demo_pr2.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/offline_backpack_3d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/taurob_tracker.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/offline_backpack_2d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/backpack_2d.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/launch/demo_backpack_3d_localization.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/urdf -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/urdf/backpack_3d.urdf -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/urdf/backpack_2d.urdf -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/transform.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/taurob_tracker.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/backpack_2d_localization.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/backpack_2d.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/demo_3d.rviz -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/assets_writer_backpack_2d.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/assets_writer_backpack_2d_ci.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/backpack_3d.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/demo_2d.rviz -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/assets_writer_backpack_3d.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/pr2.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/revo_lds.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_ros/configuration_files/backpack_3d_localization.lua -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/tf_remove_frames.py -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/libcartographer_ros.a -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/tf_bridge.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/sensor_bridge.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/ros_map_writing_points_processor.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/node_constants.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/urdf_reader.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/split_string.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/time_conversion.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/ros_log_sink.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/msg_conversion.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/node.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/map_builder_bridge.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/node_options.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/submap.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/ros_map.h -- Installing: /home/yhexie/catkin_ws/install_isolated/include/cartographer_ros/trajectory_options.h -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_assets_writer -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/bin/cartographer_assets_writer" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_assets_writer -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_assets_writer" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_node -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/bin/cartographer_node" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_node -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_node" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_offline_node -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/bin/cartographer_offline_node" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_offline_node -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_offline_node" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_start_trajectory -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/bin/cartographer_start_trajectory" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_start_trajectory -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_start_trajectory" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_occupancy_grid_node -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/bin/cartographer_occupancy_grid_node" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_occupancy_grid_node -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_occupancy_grid_node" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_rosbag_validate -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/bin/cartographer_rosbag_validate" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_rosbag_validate -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_rosbag_validate" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/bin/cartographer_pbstream_to_ros_map -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/bin/cartographer_pbstream_to_ros_map" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_pbstream_to_ros_map -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/cartographer_ros/cartographer_pbstream_to_ros_map" to "" <== Finished processing package [4 of 6]: 'cartographer_ros'==> Processing catkin package: 'cartographer_rviz' ==> Creating build directory: 'build_isolated/cartographer_rviz' ==> Building with env: '/home/yhexie/catkin_ws/install_isolated/env.sh' ==> cmake /home/yhexie/catkin_ws/src/cartographer_ros/cartographer_rviz -DCATKIN_DEVEL_PREFIX=/home/yhexie/catkin_ws/devel_isolated/cartographer_rviz -DCMAKE_INSTALL_PREFIX=/home/yhexie/catkin_ws/install_isolated -G Ninja in '/home/yhexie/catkin_ws/build_isolated/cartographer_rviz' -- The C compiler identification is GNU 5.4.0 -- The CXX compiler identification is GNU 5.4.0 -- Check for working C compiler using: Ninja -- Check for working C compiler using: Ninja -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler using: Ninja -- Check for working CXX compiler using: Ninja -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Found installed version of Eigen: /usr/lib/cmake/eigen3 -- Found required Ceres dependency: Eigen version 3.2.92 in /usr/include/eigen3 -- Found required Ceres dependency: glog -- Found Ceres version: 1.13.0 installed in: /home/yhexie/catkin_ws/install_isolated with components: [EigenSparse, SparseLinearAlgebraLibrary, LAPACK, SchurSpecializations, OpenMP, Multithreading] -- Build type: Release Files /home/yhexie/catkin_ws/build_isolated/cartographer_rviz/AllFiles.cmake and - differ -- Boost version: 1.58.0 -- Found the following Boost libraries: -- system -- iostreams -- regex -- Using CATKIN_DEVEL_PREFIX: /home/yhexie/catkin_ws/devel_isolated/cartographer_rviz -- Using CMAKE_PREFIX_PATH: /home/yhexie/catkin_ws/install_isolated;/opt/ros/kinetic -- This workspace overlays: /home/yhexie/catkin_ws/install_isolated;/opt/ros/kinetic -- Found PythonInterp: /usr/bin/python (found version "2.7.12") -- Using PYTHON_EXECUTABLE: /usr/bin/python -- Using Debian Python package layout -- Using empy: /usr/bin/empy -- Using CATKIN_ENABLE_TESTING: ON -- Call enable_testing() -- Using CATKIN_TEST_RESULTS_DIR: /home/yhexie/catkin_ws/build_isolated/cartographer_rviz/test_results -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found gtest sources under '/usr/src/gtest': gtests will be built -- Using Python nosetests: /usr/bin/nosetests-2.7 -- catkin 0.7.8 -- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy -- Using Qt5 based on the rviz_QT_VERSION: 5.5.1 -- Configuring done -- Generating done -- Build files have been written to: /home/yhexie/catkin_ws/build_isolated/cartographer_rviz ==> ninja -j1 -l1 in '/home/yhexie/catkin_ws/build_isolated/cartographer_rviz' [1/8] Automatic moc for target cartographer_rviz Generating moc_drawable_submap.cpp Generating moc_submaps_display.cpp [8/8] Linking CXX shared library /home...apher_rviz/lib/libcartographer_rviz.so ==> ninja install in '/home/yhexie/catkin_ws/build_isolated/cartographer_rviz' [3/3] Install the project... -- Install configuration: "Release" -- Installing: /home/yhexie/catkin_ws/install_isolated/_setup_util.py -- Installing: /home/yhexie/catkin_ws/install_isolated/env.sh -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.bash -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.sh -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.zsh -- Installing: /home/yhexie/catkin_ws/install_isolated/.rosinstall -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/pkgconfig/cartographer_rviz.pc -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/cmake/cartographer_rvizConfig.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/cmake/cartographer_rvizConfig-version.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/package.xml -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/libcartographer_rviz.so -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/libcartographer_rviz.so" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/rviz_plugin_description.xml -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media/materials -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media/materials/glsl120 -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media/materials/glsl120/glsl120.program -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media/materials/glsl120/submap.vert -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media/materials/glsl120/submap.frag -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media/materials/scripts -- Installing: /home/yhexie/catkin_ws/install_isolated/share/cartographer_rviz/ogre_media/materials/scripts/submap.material <== Finished processing package [5 of 6]: 'cartographer_rviz'==> Processing catkin package: 'rplidar_ros' ==> Creating build directory: 'build_isolated/rplidar_ros' ==> Building with env: '/home/yhexie/catkin_ws/install_isolated/env.sh' ==> cmake /home/yhexie/catkin_ws/src/rplidar_ros -DCATKIN_DEVEL_PREFIX=/home/yhexie/catkin_ws/devel_isolated/rplidar_ros -DCMAKE_INSTALL_PREFIX=/home/yhexie/catkin_ws/install_isolated -G Ninja in '/home/yhexie/catkin_ws/build_isolated/rplidar_ros' -- The C compiler identification is GNU 5.4.0 -- The CXX compiler identification is GNU 5.4.0 -- Check for working C compiler using: Ninja -- Check for working C compiler using: Ninja -- works -- Detecting C compiler ABI info -- Detecting C compiler ABI info - done -- Detecting C compile features -- Detecting C compile features - done -- Check for working CXX compiler using: Ninja -- Check for working CXX compiler using: Ninja -- works -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done -- Using CATKIN_DEVEL_PREFIX: /home/yhexie/catkin_ws/devel_isolated/rplidar_ros -- Using CMAKE_PREFIX_PATH: /home/yhexie/catkin_ws/install_isolated;/opt/ros/kinetic -- This workspace overlays: /home/yhexie/catkin_ws/install_isolated;/opt/ros/kinetic -- Found PythonInterp: /usr/bin/python (found version "2.7.12") -- Using PYTHON_EXECUTABLE: /usr/bin/python -- Using Debian Python package layout -- Using empy: /usr/bin/empy -- Using CATKIN_ENABLE_TESTING: ON -- Call enable_testing() -- Using CATKIN_TEST_RESULTS_DIR: /home/yhexie/catkin_ws/build_isolated/rplidar_ros/test_results -- Looking for pthread.h -- Looking for pthread.h - found -- Looking for pthread_create -- Looking for pthread_create - not found -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Found gtest sources under '/usr/src/gtest': gtests will be built -- Using Python nosetests: /usr/bin/nosetests-2.7 -- catkin 0.7.8 -- Configuring done -- Generating done -- Build files have been written to: /home/yhexie/catkin_ws/build_isolated/rplidar_ros ==> ninja -j1 -l1 in '/home/yhexie/catkin_ws/build_isolated/rplidar_ros' [8/8] Linking CXX executable /home/yhe..._ros/lib/rplidar_ros/rplidarNodeClient ==> ninja install in '/home/yhexie/catkin_ws/build_isolated/rplidar_ros' [1/1] Install the project... -- Install configuration: "" -- Installing: /home/yhexie/catkin_ws/install_isolated/_setup_util.py -- Installing: /home/yhexie/catkin_ws/install_isolated/env.sh -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.bash -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.sh -- Installing: /home/yhexie/catkin_ws/install_isolated/setup.zsh -- Installing: /home/yhexie/catkin_ws/install_isolated/.rosinstall -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/pkgconfig/rplidar_ros.pc -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/cmake/rplidar_rosConfig.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/cmake/rplidar_rosConfig-version.cmake -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/package.xml -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/rplidar_ros/rplidarNode -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/rplidar_ros/rplidarNode" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/lib/rplidar_ros/rplidarNodeClient -- Set runtime path of "/home/yhexie/catkin_ws/install_isolated/lib/rplidar_ros/rplidarNodeClient" to "" -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/launch/rplidar.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/launch/view_rplidar.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/launch/test_rplidar.launch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/rviz -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/rviz/rplidar.rviz -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/win32 -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/win32/net_serial.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/win32/timer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/win32/net_serial.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/win32/winthread.hpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/win32/timer.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/win32/arch_win32.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/linux -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/linux/net_serial.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/linux/timer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/linux/thread.hpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/linux/arch_linux.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/linux/net_serial.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/linux/timer.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/macOS -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/macOS/net_serial.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/macOS/timer.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/macOS/thread.hpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/macOS/net_serial.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/macOS/arch_macOS.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/arch/macOS/timer.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/hal -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/hal/locker.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/hal/event.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/hal/thread.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/hal/util.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/hal/thread.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/hal/abs_rxtx.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/rplidar_driver.cpp -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/rplidar_driver_serial.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/src/sdkcommon.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/include -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/include/rptypes.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/include/rplidar.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/include/rplidar_driver.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/include/rplidar_cmd.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/include/rplidar_protocol.h -- Installing: /home/yhexie/catkin_ws/install_isolated/share/rplidar_ros/sdk/README.txt <== Finished processing package [6 of 6]: 'rplidar_ros'

?

6. 添加環境變量

  vi .bashrc

  在最后添加一行 source ~/catkin_ws/install_isolated/setup.bash

7. 測試官方Demo

  wget -P ~/Downloads https://storage.googleapis.com/cartographer-public-data/bags/backpack_2d/cartographer_paper_deutsches_museum.bag

  roslaunch cartographer_ros demo_backpack_2d.launch bag_filename:=${HOME}/Downloads/cartographer_paper_deutsches_museum.bag

  3D SLAM測試

  ?roslaunch cartographer_ros offline_backpack_3d.launch bag_filenames:='/media/carto/Data/Datasets/b3-2016-03-01-13-39-41.bag'

8. 效果圖:

?上一張2018年7月15日下載代碼重新跑的效果圖片,物理機器聯想Y7000,效果相當好了:

總結

以上是生活随笔為你收集整理的Cartographer安装的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

真人与拘做受免费视频一 | 亚洲人成网站在线播放942 | 亚洲精品国产品国语在线观看 | 蜜桃臀无码内射一区二区三区 | 久久久久久av无码免费看大片 | 久久久亚洲欧洲日产国码αv | 无码av中文字幕免费放 | 亚洲 另类 在线 欧美 制服 | 伊在人天堂亚洲香蕉精品区 | 51国偷自产一区二区三区 | 少妇久久久久久人妻无码 | 无码人中文字幕 | 亚洲а∨天堂久久精品2021 | 无码av最新清无码专区吞精 | 中文字幕+乱码+中文字幕一区 | 自拍偷自拍亚洲精品10p | 亚洲欧美中文字幕5发布 | 国产精品二区一区二区aⅴ污介绍 | 日本一卡二卡不卡视频查询 | 国产无套粉嫩白浆在线 | 国产精品99爱免费视频 | 中文毛片无遮挡高清免费 | 久久久中文字幕日本无吗 | 久久精品一区二区三区四区 | 亚洲七七久久桃花影院 | 国产无遮挡吃胸膜奶免费看 | 久在线观看福利视频 | 国产口爆吞精在线视频 | 亚洲天堂2017无码 | 蜜桃臀无码内射一区二区三区 | 亚洲精品中文字幕乱码 | 粉嫩少妇内射浓精videos | 少女韩国电视剧在线观看完整 | 久久久久免费看成人影片 | 一本久道久久综合狠狠爱 | 国产精品视频免费播放 | 亚洲色偷偷偷综合网 | 宝宝好涨水快流出来免费视频 | 亚洲色www成人永久网址 | 国产亚洲欧美在线专区 | 日产精品高潮呻吟av久久 | 国产欧美熟妇另类久久久 | 久久亚洲国产成人精品性色 | 亚洲综合久久一区二区 | 黑人大群体交免费视频 | 国产成人av免费观看 | 久久99精品久久久久久动态图 | 日韩精品无码一本二本三本色 | 国产深夜福利视频在线 | 亚洲欧美国产精品专区久久 | 欧美日韩久久久精品a片 | 少妇厨房愉情理9仑片视频 | a片在线免费观看 | 亚洲一区av无码专区在线观看 | 国产精品久久久午夜夜伦鲁鲁 | 久久99精品久久久久久 | 日韩人妻无码一区二区三区久久99 | 中文无码伦av中文字幕 | 国产做国产爱免费视频 | 国产特级毛片aaaaaa高潮流水 | 成人动漫在线观看 | 亚洲成av人片在线观看无码不卡 | 久久 国产 尿 小便 嘘嘘 | 精品 日韩 国产 欧美 视频 | 免费乱码人妻系列无码专区 | 精品欧洲av无码一区二区三区 | 国产成人无码av在线影院 | 丁香花在线影院观看在线播放 | 免费国产成人高清在线观看网站 | 久久无码人妻影院 | 精品无码国产一区二区三区av | 免费视频欧美无人区码 | 色婷婷综合中文久久一本 | 国产又粗又硬又大爽黄老大爷视 | 国产av久久久久精东av | 任你躁在线精品免费 | √天堂资源地址中文在线 | 人人爽人人爽人人片av亚洲 | 色窝窝无码一区二区三区色欲 | 无码国产激情在线观看 | 亚洲综合色区中文字幕 | 麻花豆传媒剧国产免费mv在线 | 欧美人与牲动交xxxx | 国产精品第一区揄拍无码 | 国产成人综合美国十次 | 久久精品人人做人人综合 | 国产成人精品一区二区在线小狼 | 无码av岛国片在线播放 | 久久综合给合久久狠狠狠97色 | 水蜜桃色314在线观看 | 精品日本一区二区三区在线观看 | 成人欧美一区二区三区黑人免费 | 天天av天天av天天透 | 欧美日韩综合一区二区三区 | 999久久久国产精品消防器材 | 中文字幕无线码免费人妻 | 精品国产乱码久久久久乱码 | 免费无码肉片在线观看 | 爱做久久久久久 | 人妻无码αv中文字幕久久琪琪布 | 亚洲一区二区三区香蕉 | 日本护士xxxxhd少妇 | 熟女俱乐部五十路六十路av | 一本久道久久综合婷婷五月 | 中文字幕av无码一区二区三区电影 | 亚洲精品一区二区三区四区五区 | 国产性生大片免费观看性 | 男女猛烈xx00免费视频试看 | 精品国产av色一区二区深夜久久 | 欧美激情综合亚洲一二区 | 国产内射爽爽大片视频社区在线 | 欧美丰满熟妇xxxx | 女人被男人躁得好爽免费视频 | 永久黄网站色视频免费直播 | 欧美国产日韩亚洲中文 | 无码人妻丰满熟妇区毛片18 | 日日躁夜夜躁狠狠躁 | 亚洲午夜福利在线观看 | 国产美女精品一区二区三区 | 国产热a欧美热a在线视频 | 狂野欧美性猛交免费视频 | 88国产精品欧美一区二区三区 | 久久婷婷五月综合色国产香蕉 | 成人欧美一区二区三区黑人 | 少妇人妻偷人精品无码视频 | 日本护士毛茸茸高潮 | 精品乱码久久久久久久 | 色综合久久久无码中文字幕 | 日本护士xxxxhd少妇 | 水蜜桃av无码 | 成人aaa片一区国产精品 | 玩弄人妻少妇500系列视频 | 久久久久久国产精品无码下载 | 亚洲精品一区二区三区在线观看 | 欧美丰满熟妇xxxx性ppx人交 | 国产网红无码精品视频 | 久久无码专区国产精品s | 动漫av网站免费观看 | 中文毛片无遮挡高清免费 | 男人和女人高潮免费网站 | 无码一区二区三区在线 | 99久久久国产精品无码免费 | 亚洲人交乣女bbw | 国产国语老龄妇女a片 | 影音先锋中文字幕无码 | 狠狠色色综合网站 | 精品国产精品久久一区免费式 | 中文字幕亚洲情99在线 | 日本护士毛茸茸高潮 | 国产三级精品三级男人的天堂 | 两性色午夜视频免费播放 | 亚洲 a v无 码免 费 成 人 a v | 无码人妻丰满熟妇区五十路百度 | 日韩成人一区二区三区在线观看 | 国产高清av在线播放 | 亚洲国产精品无码一区二区三区 | 又色又爽又黄的美女裸体网站 | 亚洲成av人片天堂网无码】 | 大肉大捧一进一出好爽视频 | 亚洲成色www久久网站 | 丰满少妇女裸体bbw | 国产激情一区二区三区 | 亚洲精品国产品国语在线观看 | 成人精品一区二区三区中文字幕 | 欧美日韩久久久精品a片 | 国产人妻久久精品二区三区老狼 | 欧美激情综合亚洲一二区 | 精品一区二区三区无码免费视频 | 内射巨臀欧美在线视频 | 国产精品18久久久久久麻辣 | 亚洲一区二区三区偷拍女厕 | 亚洲国产一区二区三区在线观看 | 国产成人午夜福利在线播放 | 中文字幕无线码 | 一个人看的视频www在线 | 日本肉体xxxx裸交 | 搡女人真爽免费视频大全 | 亚洲国产日韩a在线播放 | 一本久久a久久精品vr综合 | 思思久久99热只有频精品66 | 中文无码成人免费视频在线观看 | 少妇人妻av毛片在线看 | 97精品人妻一区二区三区香蕉 | 乱人伦人妻中文字幕无码久久网 | 国产 精品 自在自线 | 日韩人妻无码一区二区三区久久99 | 久久人妻内射无码一区三区 | 成人免费无码大片a毛片 | 免费无码的av片在线观看 | 一本精品99久久精品77 | 国产精品鲁鲁鲁 | 狠狠色丁香久久婷婷综合五月 | 国产美女精品一区二区三区 | 国产人妻精品一区二区三区不卡 | 日韩在线不卡免费视频一区 | 国产午夜无码视频在线观看 | 婷婷五月综合激情中文字幕 | 亚洲人交乣女bbw | 自拍偷自拍亚洲精品10p | 亚洲高清偷拍一区二区三区 | 最近的中文字幕在线看视频 | 女人被爽到呻吟gif动态图视看 | 久久精品丝袜高跟鞋 | 精品国产一区二区三区四区 | 少妇性l交大片欧洲热妇乱xxx | 欧美人与禽zoz0性伦交 | 131美女爱做视频 | 中文无码伦av中文字幕 | 午夜无码人妻av大片色欲 | 鲁大师影院在线观看 | 成年女人永久免费看片 | 欧美色就是色 | 亚洲欧美色中文字幕在线 | 欧美精品国产综合久久 | 日本乱人伦片中文三区 | 性史性农村dvd毛片 | 性色欲网站人妻丰满中文久久不卡 | 中文字幕日产无线码一区 | 国产热a欧美热a在线视频 | 99久久人妻精品免费二区 | 国产亚洲欧美在线专区 | 亚洲男人av香蕉爽爽爽爽 | 一二三四在线观看免费视频 | 久久无码中文字幕免费影院蜜桃 | 国产精品久久久久影院嫩草 | 丰满妇女强制高潮18xxxx | 丰满岳乱妇在线观看中字无码 | 亚洲成色在线综合网站 | 国产亚洲人成a在线v网站 | 精品一二三区久久aaa片 | 亚洲精品美女久久久久久久 | 一本久久a久久精品亚洲 | 色婷婷久久一区二区三区麻豆 | 欧美国产日韩亚洲中文 | 四虎永久在线精品免费网址 | 人妻尝试又大又粗久久 | 一区二区三区高清视频一 | 99精品国产综合久久久久五月天 | 永久黄网站色视频免费直播 | 高潮毛片无遮挡高清免费视频 | 国产av一区二区三区最新精品 | a片免费视频在线观看 | 亚洲 a v无 码免 费 成 人 a v | 两性色午夜视频免费播放 | 国产国语老龄妇女a片 | 久久亚洲国产成人精品性色 | 澳门永久av免费网站 | 无码人妻av免费一区二区三区 | 亚洲国产精品成人久久蜜臀 | 国产尤物精品视频 | 亚洲 激情 小说 另类 欧美 | 日日鲁鲁鲁夜夜爽爽狠狠 | 久久 国产 尿 小便 嘘嘘 | 欧美日韩在线亚洲综合国产人 | 少妇一晚三次一区二区三区 | 暴力强奷在线播放无码 | 麻豆人妻少妇精品无码专区 | 日韩av无码中文无码电影 | 欧美丰满少妇xxxx性 | 国产成人无码午夜视频在线观看 | 久久 国产 尿 小便 嘘嘘 | 欧美日韩亚洲国产精品 | 自拍偷自拍亚洲精品10p | 亚洲人成网站在线播放942 | 欧美成人免费全部网站 | 97精品国产97久久久久久免费 | 亚洲另类伦春色综合小说 | 两性色午夜视频免费播放 | 香蕉久久久久久av成人 | 亚洲乱码国产乱码精品精 | 精品国产成人一区二区三区 | 精品无人区无码乱码毛片国产 | 久久久久久久女国产乱让韩 | 国产热a欧美热a在线视频 | 99久久久无码国产精品免费 | www国产精品内射老师 | 国产成人精品必看 | 亚洲国产精品毛片av不卡在线 | 玩弄中年熟妇正在播放 | 成 人 网 站国产免费观看 | 欧美日韩一区二区免费视频 | 天堂一区人妻无码 | 色综合久久88色综合天天 | 伊人久久大香线焦av综合影院 | 人人妻人人澡人人爽精品欧美 | 久久久精品欧美一区二区免费 | 亚洲色大成网站www | 成人aaa片一区国产精品 | 熟妇人妻无码xxx视频 | 99久久无码一区人妻 | 图片区 小说区 区 亚洲五月 | 欧美xxxx黑人又粗又长 | 综合激情五月综合激情五月激情1 | 精品无码国产自产拍在线观看蜜 | 一个人看的www免费视频在线观看 | 无码成人精品区在线观看 | 少妇一晚三次一区二区三区 | 国产片av国语在线观看 | 欧美日韩综合一区二区三区 | 老子影院午夜精品无码 | 鲁鲁鲁爽爽爽在线视频观看 | 131美女爱做视频 | 丰满少妇弄高潮了www | 精品成在人线av无码免费看 | 伊人色综合久久天天小片 | 久久天天躁狠狠躁夜夜免费观看 | 国产精品怡红院永久免费 | 成人三级无码视频在线观看 | 亚洲人成影院在线无码按摩店 | 精品厕所偷拍各类美女tp嘘嘘 | 久久精品国产99精品亚洲 | 亚洲成色在线综合网站 | 兔费看少妇性l交大片免费 | 丰满岳乱妇在线观看中字无码 | 麻豆国产97在线 | 欧洲 | 国产午夜无码视频在线观看 | 亚洲男人av天堂午夜在 | 久久久无码中文字幕久... | 国产精品久免费的黄网站 | 大胆欧美熟妇xx | 在线观看国产午夜福利片 | 最新国产乱人伦偷精品免费网站 | 性色欲情网站iwww九文堂 | 免费人成在线观看网站 | 色诱久久久久综合网ywww | 一区二区传媒有限公司 | 欧美丰满老熟妇xxxxx性 | 无码乱肉视频免费大全合集 | 女人高潮内射99精品 | 欧美日韩人成综合在线播放 | 免费看男女做好爽好硬视频 | 中文无码成人免费视频在线观看 | 亚洲熟熟妇xxxx | 高清国产亚洲精品自在久久 | 亚洲精品成人av在线 | 99riav国产精品视频 | 成熟人妻av无码专区 | 人人妻人人澡人人爽欧美一区 | 少妇高潮一区二区三区99 | 国产一区二区三区精品视频 | 免费观看黄网站 | 玩弄少妇高潮ⅹxxxyw | а√天堂www在线天堂小说 | 少妇性l交大片欧洲热妇乱xxx | 无码帝国www无码专区色综合 | 中文字幕无线码免费人妻 | 任你躁国产自任一区二区三区 | 99在线 | 亚洲 | 久久精品国产99久久6动漫 | 色五月五月丁香亚洲综合网 | 国产亚洲tv在线观看 | ass日本丰满熟妇pics | 亚洲国产精品一区二区第一页 | 55夜色66夜色国产精品视频 | 国产成人无码av片在线观看不卡 | 成熟妇人a片免费看网站 | 男女作爱免费网站 | 在线视频网站www色 | 国产亲子乱弄免费视频 | 又色又爽又黄的美女裸体网站 | 国产9 9在线 | 中文 | 好男人社区资源 | 永久黄网站色视频免费直播 | 免费中文字幕日韩欧美 | 久久久久久久久蜜桃 | 国产av无码专区亚洲a∨毛片 | 丰满岳乱妇在线观看中字无码 | √天堂资源地址中文在线 | 免费乱码人妻系列无码专区 | av无码久久久久不卡免费网站 | 亚洲精品一区国产 | 在线欧美精品一区二区三区 | 久久久婷婷五月亚洲97号色 | 亚洲狠狠色丁香婷婷综合 | 波多野结衣av在线观看 | 亚洲国产综合无码一区 | 久精品国产欧美亚洲色aⅴ大片 | 亚洲国产精品一区二区美利坚 | 男人和女人高潮免费网站 | 亚洲成av人片在线观看无码不卡 | ass日本丰满熟妇pics | a在线亚洲男人的天堂 | 久久综合色之久久综合 | 亚洲阿v天堂在线 | 澳门永久av免费网站 | 18无码粉嫩小泬无套在线观看 | 欧洲熟妇精品视频 | 宝宝好涨水快流出来免费视频 | 亚洲精品一区二区三区大桥未久 | 永久免费精品精品永久-夜色 | 欧美日韩综合一区二区三区 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 丰满人妻翻云覆雨呻吟视频 | 无套内谢的新婚少妇国语播放 | 欧美日本日韩 | 中文字幕人妻丝袜二区 | 天堂亚洲免费视频 | 欧美变态另类xxxx | 久久99精品国产.久久久久 | 76少妇精品导航 | 四虎国产精品免费久久 | 永久免费精品精品永久-夜色 | 亚洲日韩av一区二区三区中文 | 夜夜夜高潮夜夜爽夜夜爰爰 | аⅴ资源天堂资源库在线 | 亚洲欧洲无卡二区视頻 | 丰满少妇高潮惨叫视频 | 亚洲精品久久久久久一区二区 | 在线观看欧美一区二区三区 | 综合人妻久久一区二区精品 | 亚洲娇小与黑人巨大交 | 国产成人精品一区二区在线小狼 | 在教室伦流澡到高潮hnp视频 | 日韩无套无码精品 | 无码精品人妻一区二区三区av | 激情亚洲一区国产精品 | 一本色道久久综合亚洲精品不卡 | 国产av一区二区精品久久凹凸 | 国产精品免费大片 | 亚洲综合精品香蕉久久网 | 亚洲娇小与黑人巨大交 | 精品国产青草久久久久福利 | 亚洲色偷偷偷综合网 | 亚洲欧美国产精品专区久久 | 99久久婷婷国产综合精品青草免费 | 亚洲 a v无 码免 费 成 人 a v | 久久天天躁夜夜躁狠狠 | 久久精品人妻少妇一区二区三区 | 九一九色国产 | 女人被爽到呻吟gif动态图视看 | 久久久av男人的天堂 | 亚洲人亚洲人成电影网站色 | 99久久精品无码一区二区毛片 | 国产精品.xx视频.xxtv | 东北女人啪啪对白 | 国产内射老熟女aaaa | 亚洲色偷偷偷综合网 | 国产成人av免费观看 | 欧美日韩亚洲国产精品 | 1000部啪啪未满十八勿入下载 | 久久午夜无码鲁丝片秋霞 | 日本欧美一区二区三区乱码 | 性欧美videos高清精品 | 国产精品人人妻人人爽 | 天堂а√在线地址中文在线 | 日本饥渴人妻欲求不满 | 国产精品怡红院永久免费 | 亚洲а∨天堂久久精品2021 | 国产成人无码av片在线观看不卡 | 国产精品久久久久9999小说 | 亚洲第一网站男人都懂 | 熟女少妇人妻中文字幕 | 天天拍夜夜添久久精品大 | 日日噜噜噜噜夜夜爽亚洲精品 | 亚洲成a人片在线观看日本 | 四虎4hu永久免费 | 国产福利视频一区二区 | 免费观看又污又黄的网站 | 亚洲欧洲日本综合aⅴ在线 | 国产内射爽爽大片视频社区在线 | 国产av无码专区亚洲awww | 97夜夜澡人人爽人人喊中国片 | 日日干夜夜干 | 沈阳熟女露脸对白视频 | 综合激情五月综合激情五月激情1 | 未满成年国产在线观看 | 亚洲精品午夜无码电影网 | 午夜性刺激在线视频免费 | 精品一区二区不卡无码av | 无遮挡啪啪摇乳动态图 | 国产成人无码a区在线观看视频app | 久久久精品欧美一区二区免费 | 在线成人www免费观看视频 | 日韩成人一区二区三区在线观看 | 亚洲国精产品一二二线 | 老司机亚洲精品影院 | 国产av人人夜夜澡人人爽麻豆 | 国产真实伦对白全集 | 久久久久久av无码免费看大片 | 欧美激情一区二区三区成人 | 日韩在线不卡免费视频一区 | 又色又爽又黄的美女裸体网站 | 色五月丁香五月综合五月 | 欧美国产日产一区二区 | 伊人久久婷婷五月综合97色 | 久热国产vs视频在线观看 | 色老头在线一区二区三区 | 国产在线一区二区三区四区五区 | 少妇被粗大的猛进出69影院 | 国产超级va在线观看视频 | 亚洲理论电影在线观看 | 久久亚洲日韩精品一区二区三区 | 特级做a爰片毛片免费69 | 中文字幕人成乱码熟女app | 4hu四虎永久在线观看 | 中文字幕无码免费久久9一区9 | 亚洲精品久久久久久久久久久 | 东京一本一道一二三区 | 夜夜高潮次次欢爽av女 | 精品熟女少妇av免费观看 | 欧美人与物videos另类 | 天海翼激烈高潮到腰振不止 | 美女毛片一区二区三区四区 | 日本精品人妻无码免费大全 | 精品无码一区二区三区的天堂 | 色噜噜亚洲男人的天堂 | 四虎影视成人永久免费观看视频 | 精品国产成人一区二区三区 | 在线欧美精品一区二区三区 | 久久五月精品中文字幕 | 亚洲成在人网站无码天堂 | 狠狠亚洲超碰狼人久久 | 欧美精品无码一区二区三区 | 亚洲国产成人av在线观看 | 丁香啪啪综合成人亚洲 | 欧美自拍另类欧美综合图片区 | 亚洲精品一区二区三区大桥未久 | 精品成在人线av无码免费看 | 中国大陆精品视频xxxx | 亚洲国产精品久久人人爱 | 高潮毛片无遮挡高清免费视频 | 国产一区二区三区日韩精品 | 高潮毛片无遮挡高清免费视频 | 色窝窝无码一区二区三区色欲 | 日本免费一区二区三区最新 | 国产另类ts人妖一区二区 | 婷婷六月久久综合丁香 | 欧洲熟妇精品视频 | 色爱情人网站 | 精品少妇爆乳无码av无码专区 | 国产麻豆精品一区二区三区v视界 | 丁香花在线影院观看在线播放 | 久久久久久久久888 | 国产av久久久久精东av | 自拍偷自拍亚洲精品10p | 无码人妻黑人中文字幕 | 国产精品免费大片 | 无码av岛国片在线播放 | 少妇性l交大片欧洲热妇乱xxx | 国产精品无码一区二区三区不卡 | 丝袜 中出 制服 人妻 美腿 | 未满小14洗澡无码视频网站 | 精品夜夜澡人妻无码av蜜桃 | 午夜成人1000部免费视频 | 亚洲欧洲中文日韩av乱码 | 久9re热视频这里只有精品 | 思思久久99热只有频精品66 | 狠狠色噜噜狠狠狠7777奇米 | 无码av免费一区二区三区试看 | 天天拍夜夜添久久精品 | 狠狠亚洲超碰狼人久久 | 亚洲日本一区二区三区在线 | 香蕉久久久久久av成人 | 日韩av无码一区二区三区不卡 | 亚洲区欧美区综合区自拍区 | 国产香蕉97碰碰久久人人 | 国产精品久久久久久无码 | 十八禁视频网站在线观看 | 久久99精品久久久久婷婷 | 55夜色66夜色国产精品视频 | 中文字幕av伊人av无码av | 成人无码精品1区2区3区免费看 | 国产电影无码午夜在线播放 | 伊人久久大香线蕉午夜 | 亚洲精品国产精品乱码不卡 | 亚洲午夜无码久久 | 国产精品久久久久久久影院 | 中文字幕人妻无码一区二区三区 | 欧美老妇交乱视频在线观看 | 成人aaa片一区国产精品 | 久久久精品欧美一区二区免费 | 老熟妇乱子伦牲交视频 | 在教室伦流澡到高潮hnp视频 | 国产精品久久久久久久影院 | 国产人妻精品午夜福利免费 | 亚洲中文字幕无码中文字在线 | 麻豆国产丝袜白领秘书在线观看 | 鲁鲁鲁爽爽爽在线视频观看 | 中文精品无码中文字幕无码专区 | 宝宝好涨水快流出来免费视频 | 狂野欧美激情性xxxx | 国产一区二区三区四区五区加勒比 | 色婷婷久久一区二区三区麻豆 | 日日鲁鲁鲁夜夜爽爽狠狠 | 亚洲精品国产品国语在线观看 | 精品夜夜澡人妻无码av蜜桃 | 欧美熟妇另类久久久久久不卡 | 蜜桃av抽搐高潮一区二区 | 久青草影院在线观看国产 | 久久久精品国产sm最大网站 | 真人与拘做受免费视频 | 亚洲色www成人永久网址 | 日韩少妇白浆无码系列 | 午夜精品一区二区三区在线观看 | 久久国产自偷自偷免费一区调 | 4hu四虎永久在线观看 | 中文久久乱码一区二区 | 国产一区二区不卡老阿姨 | 日韩精品无码免费一区二区三区 | 亚洲精品一区国产 | 国产高清不卡无码视频 | 97精品国产97久久久久久免费 | 久久久久成人片免费观看蜜芽 | 国产成人无码午夜视频在线观看 | 日日噜噜噜噜夜夜爽亚洲精品 | 国产亚洲美女精品久久久2020 | 久久精品国产99久久6动漫 | 欧美丰满少妇xxxx性 | 波多野结衣 黑人 | 丰满少妇人妻久久久久久 | 国产人妻精品一区二区三区 | 精品国产精品久久一区免费式 | 丝袜 中出 制服 人妻 美腿 | 精品乱码久久久久久久 | 大乳丰满人妻中文字幕日本 | 免费观看激色视频网站 | 天堂无码人妻精品一区二区三区 | 东京热无码av男人的天堂 | 国产精品久久久久久久影院 | 亚洲成av人片天堂网无码】 | 丰满少妇弄高潮了www | 大肉大捧一进一出视频出来呀 | 中文无码伦av中文字幕 | 中文字幕无码日韩专区 | 国产精品高潮呻吟av久久4虎 | 国产艳妇av在线观看果冻传媒 | 露脸叫床粗话东北少妇 | 久久久久免费看成人影片 | 四虎4hu永久免费 | 亚洲国产av美女网站 | 亚洲乱码国产乱码精品精 | 久久成人a毛片免费观看网站 | 国产成人精品无码播放 | 欧美激情一区二区三区成人 | 2020最新国产自产精品 | av无码电影一区二区三区 | 免费中文字幕日韩欧美 | 国产无套内射久久久国产 | 亚洲人成人无码网www国产 | 日本一卡2卡3卡四卡精品网站 | 樱花草在线播放免费中文 | 成年女人永久免费看片 | 精品欧美一区二区三区久久久 | 一本久道久久综合婷婷五月 | 少妇被粗大的猛进出69影院 | 中文久久乱码一区二区 | www国产精品内射老师 | 亚洲人成影院在线观看 | 丰满肥臀大屁股熟妇激情视频 | 国产三级精品三级男人的天堂 | 人人爽人人爽人人片av亚洲 | 久久久久亚洲精品中文字幕 | 久久天天躁狠狠躁夜夜免费观看 | 成人片黄网站色大片免费观看 | 美女扒开屁股让男人桶 | 一区二区传媒有限公司 | 99久久亚洲精品无码毛片 | 成在人线av无码免费 | 色综合久久中文娱乐网 | 国产精品亚洲综合色区韩国 | 亚洲欧美日韩成人高清在线一区 | 领导边摸边吃奶边做爽在线观看 | 欧美激情一区二区三区成人 | 国产免费无码一区二区视频 | 亚洲自偷精品视频自拍 | 丰满肥臀大屁股熟妇激情视频 | 无码人妻丰满熟妇区五十路百度 | 久久天天躁狠狠躁夜夜免费观看 | 东京一本一道一二三区 | 在线播放亚洲第一字幕 | 99re在线播放 | 亚洲色成人中文字幕网站 | 最新版天堂资源中文官网 | 精品厕所偷拍各类美女tp嘘嘘 | 中文字幕 亚洲精品 第1页 | 国产精品美女久久久网av | 扒开双腿疯狂进出爽爽爽视频 | 日韩av激情在线观看 | 亚洲成av人片在线观看无码不卡 | 麻豆国产人妻欲求不满 | 窝窝午夜理论片影院 | 丰满护士巨好爽好大乳 | 中文精品无码中文字幕无码专区 | 欧美肥老太牲交大战 | 亚洲日韩精品欧美一区二区 | 丰满人妻一区二区三区免费视频 | 欧美国产日韩久久mv | 西西人体www44rt大胆高清 | 国产精品久久久久久久9999 | 日韩精品a片一区二区三区妖精 | 中文字幕乱码人妻二区三区 | 性史性农村dvd毛片 | 国产精品无码成人午夜电影 | 性生交大片免费看女人按摩摩 | 国产精品怡红院永久免费 | 97精品人妻一区二区三区香蕉 | 精品人妻av区 | 青青久在线视频免费观看 | 人妻人人添人妻人人爱 | 偷窥村妇洗澡毛毛多 | 丰满诱人的人妻3 | 中文字幕无码免费久久9一区9 | 图片小说视频一区二区 | 国产婷婷色一区二区三区在线 | √天堂中文官网8在线 | 色一情一乱一伦一区二区三欧美 | 久久亚洲精品中文字幕无男同 | 99久久精品国产一区二区蜜芽 | 丰满护士巨好爽好大乳 | 久久综合给久久狠狠97色 | 日日麻批免费40分钟无码 | 又大又黄又粗又爽的免费视频 | 国产九九九九九九九a片 | 午夜精品一区二区三区的区别 | 国产特级毛片aaaaaaa高清 | 亚洲人交乣女bbw | 精品偷拍一区二区三区在线看 | 女高中生第一次破苞av | 国产精华av午夜在线观看 | 国产人妻精品午夜福利免费 | 亚洲男人av香蕉爽爽爽爽 | 波多野结衣av在线观看 | 亚洲国产精华液网站w | 暴力强奷在线播放无码 | 欧美日本免费一区二区三区 | 亚洲欧洲日本无在线码 | 俺去俺来也www色官网 | 白嫩日本少妇做爰 | 亚洲精品一区二区三区四区五区 | 亚洲成av人影院在线观看 | 人妻少妇精品久久 | 亚洲日韩av片在线观看 | 鲁鲁鲁爽爽爽在线视频观看 | 国产在线精品一区二区高清不卡 | 国产色视频一区二区三区 | 欧美 日韩 亚洲 在线 | 大胆欧美熟妇xx | 永久黄网站色视频免费直播 | 男女爱爱好爽视频免费看 | 麻豆av传媒蜜桃天美传媒 | 三级4级全黄60分钟 | 亚洲 a v无 码免 费 成 人 a v | 国产精品va在线播放 | 九月婷婷人人澡人人添人人爽 | 成人综合网亚洲伊人 | 学生妹亚洲一区二区 | 国产亚洲精品久久久久久国模美 | 色窝窝无码一区二区三区色欲 | 久久这里只有精品视频9 | 久久亚洲中文字幕无码 | 亚洲区小说区激情区图片区 | www一区二区www免费 | 色综合视频一区二区三区 | 午夜精品一区二区三区的区别 | 国产av一区二区精品久久凹凸 | 精品国产aⅴ无码一区二区 | 一本久久伊人热热精品中文字幕 | www国产精品内射老师 | а√天堂www在线天堂小说 | 国产激情一区二区三区 | 欧美人与禽zoz0性伦交 | 久久午夜夜伦鲁鲁片无码免费 | 性做久久久久久久免费看 | 久久99精品国产.久久久久 | 国产成人av免费观看 | 国产又爽又黄又刺激的视频 | 国内少妇偷人精品视频 | 老太婆性杂交欧美肥老太 | 日本爽爽爽爽爽爽在线观看免 | 成人欧美一区二区三区黑人 | 99久久人妻精品免费一区 | 少妇人妻av毛片在线看 | 国产猛烈高潮尖叫视频免费 | 中文字幕无码热在线视频 | 波多野结衣av在线观看 | 国产乱人无码伦av在线a | 亚洲一区二区三区无码久久 | 精品人人妻人人澡人人爽人人 | 男女性色大片免费网站 | 亚洲国产精品无码一区二区三区 | 红桃av一区二区三区在线无码av | 精品少妇爆乳无码av无码专区 | 老头边吃奶边弄进去呻吟 | 色婷婷综合中文久久一本 | 成年美女黄网站色大免费视频 | 国产精品香蕉在线观看 | 国产免费无码一区二区视频 | 无码人妻黑人中文字幕 | 香港三级日本三级妇三级 | 大屁股大乳丰满人妻 | 久青草影院在线观看国产 | 国产精品久久国产三级国 | 亚洲呦女专区 | 成人欧美一区二区三区黑人 | 久久综合九色综合97网 | 伊人色综合久久天天小片 | 蜜臀av无码人妻精品 | www国产亚洲精品久久网站 | 中文字幕人妻无码一夲道 | 欧美黑人巨大xxxxx | 男女爱爱好爽视频免费看 | 在线亚洲高清揄拍自拍一品区 | 日韩欧美中文字幕公布 | 亚洲男人av天堂午夜在 | 四虎影视成人永久免费观看视频 | 国产激情精品一区二区三区 | 动漫av一区二区在线观看 | 午夜无码人妻av大片色欲 | 免费看男女做好爽好硬视频 | 日本精品人妻无码免费大全 | 九月婷婷人人澡人人添人人爽 | 风流少妇按摩来高潮 | 亚洲日韩中文字幕在线播放 | 一个人看的视频www在线 | 99久久精品午夜一区二区 | 大地资源网第二页免费观看 | 日本一区二区三区免费高清 | av香港经典三级级 在线 | 天堂а√在线中文在线 | 蜜臀aⅴ国产精品久久久国产老师 | 亚洲国产精品无码久久久久高潮 | 无码午夜成人1000部免费视频 | 丰满少妇女裸体bbw | 亚洲色欲久久久综合网东京热 | 国产成人一区二区三区在线观看 | 黄网在线观看免费网站 | 在线观看免费人成视频 | 在线成人www免费观看视频 | 国产精品-区区久久久狼 | 亚洲精品午夜国产va久久成人 | 精品一区二区不卡无码av | 国产精品久久久久9999小说 | 中文字幕乱码中文乱码51精品 | 国内精品九九久久久精品 | 台湾无码一区二区 | 亚洲成av人片天堂网无码】 | 亚洲性无码av中文字幕 | 99久久99久久免费精品蜜桃 | 波多野42部无码喷潮在线 | 黑森林福利视频导航 | 久久久久av无码免费网 | 国产精品高潮呻吟av久久4虎 | 精品成在人线av无码免费看 | 久久综合久久自在自线精品自 | 高清国产亚洲精品自在久久 | 97精品人妻一区二区三区香蕉 | 中文字幕av伊人av无码av | 亚洲色欲久久久综合网东京热 | 欧美怡红院免费全部视频 | 又大又黄又粗又爽的免费视频 | 国产午夜亚洲精品不卡下载 | 色婷婷综合激情综在线播放 | 丰腴饱满的极品熟妇 | 中文字幕人妻丝袜二区 | 娇妻被黑人粗大高潮白浆 | 99久久人妻精品免费二区 | 国产精品久久久久久久9999 | 欧美丰满熟妇xxxx | 国产国产精品人在线视 | 牲交欧美兽交欧美 | 又大又黄又粗又爽的免费视频 | 超碰97人人做人人爱少妇 | 久久国产36精品色熟妇 | 成在人线av无码免费 | 国产高潮视频在线观看 | 国产午夜手机精彩视频 | 在线欧美精品一区二区三区 | 国产又粗又硬又大爽黄老大爷视 | 俄罗斯老熟妇色xxxx | 亚洲日韩中文字幕在线播放 | 东北女人啪啪对白 | 蜜臀aⅴ国产精品久久久国产老师 | 成人一区二区免费视频 | av人摸人人人澡人人超碰下载 | 欧美熟妇另类久久久久久多毛 | 久久精品视频在线看15 | 亚洲成a人片在线观看日本 | 日本va欧美va欧美va精品 | 7777奇米四色成人眼影 | 日本一卡二卡不卡视频查询 | 亚洲一区二区观看播放 | 人妻夜夜爽天天爽三区 | 国产一区二区三区精品视频 | 荫蒂被男人添的好舒服爽免费视频 | 18精品久久久无码午夜福利 | 成人无码视频在线观看网站 | 夜夜高潮次次欢爽av女 | 九九在线中文字幕无码 | 亚洲成a人片在线观看无码3d | 中文精品久久久久人妻不卡 | 蜜桃臀无码内射一区二区三区 | 国产亚洲精品精品国产亚洲综合 | 亚洲国产精品久久人人爱 | 亚洲精品一区二区三区四区五区 | 国产精品亚洲综合色区韩国 | 日本乱偷人妻中文字幕 | 精品成人av一区二区三区 | 野外少妇愉情中文字幕 | 亚洲成av人在线观看网址 | 俺去俺来也在线www色官网 | 丰满岳乱妇在线观看中字无码 | 人妻天天爽夜夜爽一区二区 | 激情国产av做激情国产爱 | 无码任你躁久久久久久久 | 亚洲国产成人av在线观看 | 国产成人精品一区二区在线小狼 | 最近中文2019字幕第二页 | 麻豆国产人妻欲求不满 | 成人试看120秒体验区 | 精品 日韩 国产 欧美 视频 | 亚拍精品一区二区三区探花 | 在线观看免费人成视频 | 国产人妻大战黑人第1集 | 麻豆蜜桃av蜜臀av色欲av | 国产suv精品一区二区五 | 国产真实伦对白全集 | 国产成人综合在线女婷五月99播放 | 无码吃奶揉捏奶头高潮视频 | 国产欧美精品一区二区三区 | 免费人成网站视频在线观看 | 草草网站影院白丝内射 | 小sao货水好多真紧h无码视频 | 精品亚洲成av人在线观看 | 国产两女互慰高潮视频在线观看 | 精品一区二区三区波多野结衣 | 久在线观看福利视频 | 青青久在线视频免费观看 | 伊人久久大香线焦av综合影院 | 成人免费视频视频在线观看 免费 | 国产麻豆精品精东影业av网站 | 久久久av男人的天堂 | 牲交欧美兽交欧美 | 国产无遮挡又黄又爽免费视频 | 澳门永久av免费网站 | 国产两女互慰高潮视频在线观看 | 中文字幕无线码免费人妻 | 久久综合久久自在自线精品自 | 国产午夜亚洲精品不卡 | 国产av无码专区亚洲a∨毛片 | 中文字幕日韩精品一区二区三区 | 亚洲一区二区三区在线观看网站 | 亚洲熟妇色xxxxx欧美老妇 | 亚洲欧美日韩成人高清在线一区 | 粉嫩少妇内射浓精videos | 久久久久亚洲精品男人的天堂 | 无码午夜成人1000部免费视频 | 亚洲欧洲无卡二区视頻 | www国产亚洲精品久久久日本 | 国产精品99久久精品爆乳 | 无套内谢老熟女 | 国产一区二区三区精品视频 | 蜜桃视频插满18在线观看 | 国产精品va在线观看无码 | 日本护士xxxxhd少妇 | 国产亚洲欧美日韩亚洲中文色 | 亚洲成av人综合在线观看 | 暴力强奷在线播放无码 | 久久综合激激的五月天 | 久久人人爽人人爽人人片av高清 | 3d动漫精品啪啪一区二区中 | 草草网站影院白丝内射 | 亚洲精品久久久久中文第一幕 | 日本一本二本三区免费 | 久热国产vs视频在线观看 | 99久久精品日本一区二区免费 | 久久久久久久女国产乱让韩 | 亚洲色欲久久久综合网东京热 | 精品偷拍一区二区三区在线看 | 久久久久久久久888 | 色一情一乱一伦一区二区三欧美 | 97se亚洲精品一区 | 亚洲啪av永久无码精品放毛片 | 无码国内精品人妻少妇 | 久久无码专区国产精品s | 99久久人妻精品免费二区 | 乌克兰少妇xxxx做受 | 国产熟妇另类久久久久 | 成人性做爰aaa片免费看 | 亚洲中文字幕在线观看 | 久久人妻内射无码一区三区 | 精品国产一区二区三区四区在线看 | 天堂а√在线中文在线 | 人人妻人人澡人人爽人人精品浪潮 | 精品人妻中文字幕有码在线 | 欧美性猛交xxxx富婆 | 精品人妻av区 | 露脸叫床粗话东北少妇 | 午夜福利电影 | 国内精品久久久久久中文字幕 | 国产偷国产偷精品高清尤物 | 久久亚洲中文字幕精品一区 | 波多野结衣av在线观看 | 久久综合色之久久综合 | 亚洲无人区午夜福利码高清完整版 | 国产乱码精品一品二品 | 熟妇人妻无乱码中文字幕 | 国产色xx群视频射精 | 又大又黄又粗又爽的免费视频 | 久久视频在线观看精品 | 婷婷丁香五月天综合东京热 | 曰韩无码二三区中文字幕 | 亚洲一区二区三区无码久久 | 偷窥日本少妇撒尿chinese | 国产亚洲欧美在线专区 | 超碰97人人做人人爱少妇 | 青草青草久热国产精品 | 亚洲欧洲日本综合aⅴ在线 | 欧美亚洲国产一区二区三区 | 久久久久久久久蜜桃 | 久久99精品久久久久久动态图 | 精品国产一区二区三区四区在线看 | 撕开奶罩揉吮奶头视频 | 在线播放免费人成毛片乱码 | 内射后入在线观看一区 | 亚洲精品鲁一鲁一区二区三区 | 日韩精品a片一区二区三区妖精 | 国产热a欧美热a在线视频 | 黑人玩弄人妻中文在线 | 成人aaa片一区国产精品 | 东京热一精品无码av | 午夜精品久久久内射近拍高清 | 国产成人av免费观看 | 国产亚洲视频中文字幕97精品 | 国产亚洲精品精品国产亚洲综合 | 蜜桃视频韩日免费播放 | 东京热男人av天堂 | 国产乱人伦av在线无码 | 亚洲精品中文字幕久久久久 | 无码一区二区三区在线 | 国产一区二区三区精品视频 | 一本久久a久久精品vr综合 | 东京热男人av天堂 | 中文字幕av伊人av无码av | 又紧又大又爽精品一区二区 | 真人与拘做受免费视频一 | 亚洲а∨天堂久久精品2021 | 亚洲中文字幕无码中字 | 人人妻人人澡人人爽精品欧美 | 无码人妻丰满熟妇区五十路百度 | 中文字幕无码免费久久9一区9 | 久久久婷婷五月亚洲97号色 | 欧美成人高清在线播放 | v一区无码内射国产 | 国产成人无码一二三区视频 | 大地资源网第二页免费观看 | 国产精品久久久久久久影院 | 日韩欧美群交p片內射中文 | 黑森林福利视频导航 | 丰满岳乱妇在线观看中字无码 | 暴力强奷在线播放无码 | 中文字幕日韩精品一区二区三区 | 久在线观看福利视频 | 大屁股大乳丰满人妻 | 国产极品视觉盛宴 | 97无码免费人妻超级碰碰夜夜 | 老司机亚洲精品影院无码 | 亚洲精品国产精品乱码视色 | 国产精品爱久久久久久久 | 国产莉萝无码av在线播放 | 欧美黑人巨大xxxxx | 亚洲一区二区三区四区 | 国语自产偷拍精品视频偷 | 激情五月综合色婷婷一区二区 | 熟女少妇人妻中文字幕 | 亚洲天堂2017无码 | 精品偷拍一区二区三区在线看 | 久久精品人人做人人综合试看 | 激情五月综合色婷婷一区二区 | 人人妻人人澡人人爽人人精品浪潮 | 牲欲强的熟妇农村老妇女 | 丰满岳乱妇在线观看中字无码 | 欧美兽交xxxx×视频 | 色综合久久中文娱乐网 | av小次郎收藏 | 亚洲 a v无 码免 费 成 人 a v | 国产真实夫妇视频 | 老熟妇乱子伦牲交视频 | 国产午夜精品一区二区三区嫩草 | 无码毛片视频一区二区本码 | 中文字幕av日韩精品一区二区 | 男女超爽视频免费播放 | 亚洲人成网站在线播放942 | 精品国产福利一区二区 | а√资源新版在线天堂 | 大肉大捧一进一出好爽视频 | 久久熟妇人妻午夜寂寞影院 | 国产精品美女久久久久av爽李琼 | 国产亚洲精品久久久闺蜜 | 免费乱码人妻系列无码专区 | 亚洲va欧美va天堂v国产综合 | 久久久久成人精品免费播放动漫 | 国产精品美女久久久久av爽李琼 | 扒开双腿疯狂进出爽爽爽视频 | 午夜熟女插插xx免费视频 | 亚洲综合在线一区二区三区 | 国产真实夫妇视频 | 亚洲国产日韩a在线播放 | 国产口爆吞精在线视频 | 蜜臀av无码人妻精品 | 国产精品办公室沙发 | 特级做a爰片毛片免费69 | 精品人妻av区 | 在线观看国产午夜福利片 | av人摸人人人澡人人超碰下载 | 国产人成高清在线视频99最全资源 | 日韩视频 中文字幕 视频一区 | 亚洲中文字幕无码中文字在线 | 天天摸天天透天天添 | 夜夜高潮次次欢爽av女 | 色偷偷人人澡人人爽人人模 | 亚拍精品一区二区三区探花 | 欧美成人家庭影院 | 久久亚洲精品成人无码 | 亚洲色成人中文字幕网站 | 久久成人a毛片免费观看网站 | 亚洲成av人片在线观看无码不卡 | 人人妻人人澡人人爽人人精品 | 丰满少妇熟乱xxxxx视频 | 亚洲va欧美va天堂v国产综合 | 在线观看国产一区二区三区 | 激情五月综合色婷婷一区二区 | 成人性做爰aaa片免费看不忠 | 亚洲一区二区观看播放 | 亚洲欧美色中文字幕在线 | 伊人久久婷婷五月综合97色 | 丰满少妇人妻久久久久久 | 国产国产精品人在线视 | 骚片av蜜桃精品一区 | aⅴ亚洲 日韩 色 图网站 播放 | 日本乱偷人妻中文字幕 | 内射爽无广熟女亚洲 | 亚洲人成影院在线观看 | 久久久久久a亚洲欧洲av冫 | 国产成人午夜福利在线播放 | 久久无码人妻影院 | 欧洲美熟女乱又伦 | 国产猛烈高潮尖叫视频免费 | 亚洲一区二区三区在线观看网站 | 动漫av一区二区在线观看 | 中文字幕无码日韩欧毛 | 丰满人妻被黑人猛烈进入 | 久久人人爽人人爽人人片av高清 | 中文字幕无码av激情不卡 | 国产办公室秘书无码精品99 | 人人妻人人澡人人爽精品欧美 | 精品夜夜澡人妻无码av蜜桃 | 99久久久国产精品无码免费 | 国内丰满熟女出轨videos | 2020久久超碰国产精品最新 | 欧美大屁股xxxxhd黑色 | 国产xxx69麻豆国语对白 | 亚洲色无码一区二区三区 | 水蜜桃亚洲一二三四在线 | 亚洲狠狠婷婷综合久久 | 天天摸天天碰天天添 | 疯狂三人交性欧美 | 日产精品高潮呻吟av久久 | 两性色午夜视频免费播放 | 国产精品久久久久久久9999 | 精品久久久久久人妻无码中文字幕 | 久久伊人色av天堂九九小黄鸭 | 激情亚洲一区国产精品 | 亚洲色欲色欲欲www在线 | 性啪啪chinese东北女人 | 国产乱人无码伦av在线a | 少妇愉情理伦片bd | 欧美阿v高清资源不卡在线播放 | 无套内谢的新婚少妇国语播放 | 300部国产真实乱 | 女人色极品影院 | 亚洲中文字幕va福利 | 九九综合va免费看 | av人摸人人人澡人人超碰下载 | 国产69精品久久久久app下载 | 55夜色66夜色国产精品视频 | 精品偷拍一区二区三区在线看 | 精品欧美一区二区三区久久久 | 天天拍夜夜添久久精品大 | 国产午夜福利100集发布 | 欧美亚洲国产一区二区三区 | 亚洲综合无码久久精品综合 | 999久久久国产精品消防器材 | 中文字幕中文有码在线 | 女人被男人躁得好爽免费视频 | 中文字幕av无码一区二区三区电影 | 精品午夜福利在线观看 | 免费无码av一区二区 | 欧洲精品码一区二区三区免费看 | 欧美人与善在线com | 亚洲精品无码国产 | 国产成人综合美国十次 | 欧美老妇与禽交 | 麻豆精产国品 | 日韩精品无码免费一区二区三区 | 国产麻豆精品精东影业av网站 | 日韩在线不卡免费视频一区 | 牲交欧美兽交欧美 | 国产精品亚洲а∨无码播放麻豆 | 日欧一片内射va在线影院 | 亚洲精品欧美二区三区中文字幕 | 少妇高潮一区二区三区99 | 久青草影院在线观看国产 | a国产一区二区免费入口 | 中文无码成人免费视频在线观看 | 中文字幕无线码 | 一本久道久久综合狠狠爱 | 国产在线无码精品电影网 | 免费播放一区二区三区 | 青青青手机频在线观看 | 亚洲国产一区二区三区在线观看 | 性做久久久久久久免费看 | 日韩精品无码一区二区中文字幕 | 亚洲人成网站在线播放942 | 久久久国产精品无码免费专区 | 性色欲网站人妻丰满中文久久不卡 | 国产精品va在线观看无码 | 免费国产成人高清在线观看网站 | 少妇邻居内射在线 | 欧美丰满老熟妇xxxxx性 | 蜜桃视频插满18在线观看 | 久久精品国产大片免费观看 | 成人精品一区二区三区中文字幕 | 99久久久无码国产精品免费 | 中国女人内谢69xxxxxa片 | 国产精品人妻一区二区三区四 | 国产成人人人97超碰超爽8 | 搡女人真爽免费视频大全 | 欧美激情综合亚洲一二区 | 麻豆国产人妻欲求不满谁演的 | 日日鲁鲁鲁夜夜爽爽狠狠 | 国产真实乱对白精彩久久 | 波多野结衣av在线观看 | 欧美日本免费一区二区三区 | 在教室伦流澡到高潮hnp视频 | 免费人成在线视频无码 | 午夜精品久久久久久久久 | 国产电影无码午夜在线播放 | 国产色精品久久人妻 | 精品偷拍一区二区三区在线看 | 两性色午夜免费视频 | 特黄特色大片免费播放器图片 | 久久综合网欧美色妞网 | 无码午夜成人1000部免费视频 | 粗大的内捧猛烈进出视频 | 强伦人妻一区二区三区视频18 | 色情久久久av熟女人妻网站 | 丰满岳乱妇在线观看中字无码 | 青草视频在线播放 | 久久久国产精品无码免费专区 | 久久综合给合久久狠狠狠97色 | 亚洲 高清 成人 动漫 | 亚洲日韩av一区二区三区四区 | 国产午夜亚洲精品不卡下载 | 国产精品18久久久久久麻辣 | 午夜福利试看120秒体验区 | 国产精品资源一区二区 | 亚洲一区二区三区在线观看网站 | 正在播放老肥熟妇露脸 | 中文字幕乱码人妻二区三区 | 玩弄人妻少妇500系列视频 | 国产精品美女久久久网av | 国产精品久久国产精品99 | 亚洲区小说区激情区图片区 | 国产精品亚洲一区二区三区喷水 | 国产精品va在线观看无码 | 久久综合网欧美色妞网 | 亚洲人成人无码网www国产 | 夜夜夜高潮夜夜爽夜夜爰爰 | 国产免费久久精品国产传媒 | 撕开奶罩揉吮奶头视频 | 精品无人国产偷自产在线 | 国产精品-区区久久久狼 | 国产av一区二区精品久久凹凸 | 扒开双腿疯狂进出爽爽爽视频 | 成人欧美一区二区三区 | 丰满少妇弄高潮了www | 久久亚洲精品成人无码 | 精品aⅴ一区二区三区 | 成人亚洲精品久久久久 | 欧美变态另类xxxx | 国产明星裸体无码xxxx视频 | 九九久久精品国产免费看小说 | 国产精品手机免费 | 国产精品高潮呻吟av久久4虎 | 国产片av国语在线观看 | 精品欧洲av无码一区二区三区 | 国产精品丝袜黑色高跟鞋 | 欧美阿v高清资源不卡在线播放 | 国产做国产爱免费视频 | 精品国产福利一区二区 | 久久久久久a亚洲欧洲av冫 | 久久99精品国产麻豆 | 欧洲精品码一区二区三区免费看 | 亚洲精品欧美二区三区中文字幕 | 亚洲最大成人网站 | 日日摸天天摸爽爽狠狠97 | 精品aⅴ一区二区三区 | 一本一道久久综合久久 | 欧美 日韩 亚洲 在线 | 亚洲人成网站色7799 | 性欧美熟妇videofreesex | 一本无码人妻在中文字幕免费 | 麻豆国产丝袜白领秘书在线观看 | 亚洲国产av精品一区二区蜜芽 | 国产亚洲人成a在线v网站 | 午夜无码区在线观看 | 娇妻被黑人粗大高潮白浆 | 国产亚洲精品久久久久久 | 久久综合激激的五月天 | 久久久久久久久蜜桃 | 欧美人与物videos另类 | www成人国产高清内射 | 中文无码精品a∨在线观看不卡 | 人人妻人人澡人人爽欧美精品 | 亚洲中文字幕在线观看 | 久久久久久久人妻无码中文字幕爆 | 亚洲伊人久久精品影院 | 欧美性生交活xxxxxdddd | 未满小14洗澡无码视频网站 | 日本熟妇大屁股人妻 | 国产又爽又黄又刺激的视频 | 夜精品a片一区二区三区无码白浆 | 日韩少妇内射免费播放 | 精品aⅴ一区二区三区 | 中文字幕无码热在线视频 | 亚无码乱人伦一区二区 | 四虎国产精品一区二区 | 国产精品视频免费播放 | 色老头在线一区二区三区 | 青青久在线视频免费观看 | 美女毛片一区二区三区四区 | 无码av免费一区二区三区试看 | 亚洲中文字幕av在天堂 | 欧美真人作爱免费视频 | 亚洲va中文字幕无码久久不卡 | 色一情一乱一伦一区二区三欧美 | 久久精品女人的天堂av | 狠狠亚洲超碰狼人久久 | 99re在线播放 | 亚洲中文字幕无码一久久区 | 老司机亚洲精品影院 | 国产精品久久久久无码av色戒 | 国产精品-区区久久久狼 | 国产激情一区二区三区 | 人妻少妇被猛烈进入中文字幕 | 亚洲精品国产a久久久久久 | 未满小14洗澡无码视频网站 | 亚洲色偷偷男人的天堂 | 欧美怡红院免费全部视频 | 亚洲人成无码网www | 亚洲熟妇色xxxxx欧美老妇 | 亚洲成色www久久网站 | 亚洲欧美日韩综合久久久 | 激情亚洲一区国产精品 | 日韩精品久久久肉伦网站 | 性欧美熟妇videofreesex | 久久久久久久久888 | 99久久久无码国产精品免费 | 亚洲日韩乱码中文无码蜜桃臀网站 | 丰满少妇人妻久久久久久 | 女人被男人爽到呻吟的视频 | 国产欧美精品一区二区三区 | 久久久久久亚洲精品a片成人 | 精品国产一区二区三区四区在线看 | аⅴ资源天堂资源库在线 | 国产卡一卡二卡三 | 亚洲热妇无码av在线播放 | 性啪啪chinese东北女人 | 麻花豆传媒剧国产免费mv在线 | 精品国产国产综合精品 | 一本大道伊人av久久综合 | 亚洲熟妇色xxxxx亚洲 | 久久久久av无码免费网 | 永久免费精品精品永久-夜色 | 奇米影视7777久久精品 | 国产精品多人p群无码 | 国产在线无码精品电影网 | 丰满少妇弄高潮了www | 日韩精品a片一区二区三区妖精 | 日本精品久久久久中文字幕 | 日韩无码专区 | 99久久婷婷国产综合精品青草免费 | 无码帝国www无码专区色综合 | 色婷婷久久一区二区三区麻豆 | 精品国偷自产在线视频 | 久久精品国产一区二区三区肥胖 | 成人女人看片免费视频放人 | 亚洲第一无码av无码专区 | 欧美日韩一区二区综合 | 国产办公室秘书无码精品99 | 亚洲乱码中文字幕在线 | 骚片av蜜桃精品一区 | 两性色午夜免费视频 | 亚洲成av人片天堂网无码】 | 女人被爽到呻吟gif动态图视看 | 内射巨臀欧美在线视频 | 国产成人一区二区三区别 | 婷婷综合久久中文字幕蜜桃三电影 | 国产成人精品三级麻豆 | 日本肉体xxxx裸交 | 亚洲中文字幕在线无码一区二区 | 麻豆md0077饥渴少妇 | 国产人成高清在线视频99最全资源 | 亚洲一区二区三区国产精华液 | 激情亚洲一区国产精品 | 日日橹狠狠爱欧美视频 | 国产女主播喷水视频在线观看 | 精品国产国产综合精品 | 人人妻人人澡人人爽人人精品 | 成人女人看片免费视频放人 | 人妻少妇精品无码专区二区 | 亚洲欧洲日本综合aⅴ在线 | 日韩欧美成人免费观看 | 欧美性猛交xxxx富婆 | 熟女少妇人妻中文字幕 | 亚洲国产成人a精品不卡在线 | 亚洲а∨天堂久久精品2021 | 国产精品资源一区二区 | 国产午夜视频在线观看 | 久久亚洲精品成人无码 | 国产精品无码一区二区桃花视频 | 日本爽爽爽爽爽爽在线观看免 | 天堂亚洲2017在线观看 | 九九在线中文字幕无码 | 高清无码午夜福利视频 | 精品国产乱码久久久久乱码 | 激情五月综合色婷婷一区二区 | 精品午夜福利在线观看 | 亚洲日韩一区二区三区 | 55夜色66夜色国产精品视频 | 奇米影视888欧美在线观看 | 伊人色综合久久天天小片 | 中国女人内谢69xxxxxa片 | 久久久久久国产精品无码下载 | 少妇无码av无码专区在线观看 | 久在线观看福利视频 | 国产人成高清在线视频99最全资源 | 国产成人亚洲综合无码 | 综合人妻久久一区二区精品 | 欧美 日韩 人妻 高清 中文 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 丝袜足控一区二区三区 | 中文字幕 人妻熟女 | 精品无码国产一区二区三区av | 黄网在线观看免费网站 | 一本大道久久东京热无码av | 欧美精品国产综合久久 | 成在人线av无码免观看麻豆 | 国产成人无码区免费内射一片色欲 | 成人无码视频在线观看网站 | 18禁黄网站男男禁片免费观看 | 免费无码午夜福利片69 | 亚洲国产精品一区二区美利坚 | 亚洲成熟女人毛毛耸耸多 | 中文字幕色婷婷在线视频 | 国产一区二区三区影院 | 色五月五月丁香亚洲综合网 | 青草视频在线播放 | 日韩精品一区二区av在线 | 亚洲午夜福利在线观看 | 成人试看120秒体验区 | 午夜福利不卡在线视频 | 任你躁国产自任一区二区三区 | 国产办公室秘书无码精品99 | 久久99久久99精品中文字幕 | 国产精品美女久久久 | www一区二区www免费 | 国产午夜亚洲精品不卡下载 | 午夜福利不卡在线视频 | av在线亚洲欧洲日产一区二区 | 成人亚洲精品久久久久软件 | 小泽玛莉亚一区二区视频在线 | 日日橹狠狠爱欧美视频 | 免费视频欧美无人区码 | 久久久国产精品无码免费专区 | 男女性色大片免费网站 | 亚洲一区二区三区 | 精品无码国产自产拍在线观看蜜 | 亚洲第一网站男人都懂 | 国产成人精品视频ⅴa片软件竹菊 | 好男人www社区 | 亚洲精品午夜无码电影网 | www国产亚洲精品久久久日本 | 国产亚洲美女精品久久久2020 | 亚洲s码欧洲m码国产av | 久久久久亚洲精品中文字幕 | 精品无码成人片一区二区98 | 亚洲 高清 成人 动漫 | 日韩欧美中文字幕公布 | 丰满人妻翻云覆雨呻吟视频 | 久久www免费人成人片 | 午夜精品一区二区三区在线观看 | 精品水蜜桃久久久久久久 | 精品国产一区二区三区av 性色 | 精品人妻人人做人人爽夜夜爽 | 精品国产一区二区三区四区在线看 | 国精产品一区二区三区 | 成人无码精品1区2区3区免费看 | 国产三级精品三级男人的天堂 | 日产精品高潮呻吟av久久 | 久久精品99久久香蕉国产色戒 | 午夜精品一区二区三区的区别 | 国产成人无码av在线影院 | 伊人久久婷婷五月综合97色 | 精品无码成人片一区二区98 | 国产成人无码av片在线观看不卡 | 久久综合久久自在自线精品自 | 久久综合狠狠综合久久综合88 | 99久久人妻精品免费二区 | 免费人成在线视频无码 | 国产av一区二区精品久久凹凸 | 蜜桃视频插满18在线观看 | 思思久久99热只有频精品66 | 国产精品久久久久久久影院 | 亚洲日韩av一区二区三区四区 | 无码人妻精品一区二区三区不卡 | 99久久亚洲精品无码毛片 | 99精品视频在线观看免费 | 国产国产精品人在线视 | 国产精品高潮呻吟av久久4虎 | 18精品久久久无码午夜福利 | 国产一区二区三区四区五区加勒比 | 无套内谢老熟女 | 久久久久久国产精品无码下载 | 精品无码国产自产拍在线观看蜜 | 亚洲人成人无码网www国产 | 欧美激情一区二区三区成人 | 久久亚洲中文字幕精品一区 | 亚洲aⅴ无码成人网站国产app | 久久午夜无码鲁丝片午夜精品 | 99riav国产精品视频 | 无码人妻精品一区二区三区不卡 | 成人精品天堂一区二区三区 | 亚洲人亚洲人成电影网站色 | 亚洲精品午夜无码电影网 | 老熟女重囗味hdxx69 | 永久免费观看国产裸体美女 | 欧美日韩一区二区三区自拍 | 国产亚洲精品久久久久久久久动漫 | 伊人久久大香线蕉午夜 | 东北女人啪啪对白 | 亚洲欧美日韩国产精品一区二区 | 久9re热视频这里只有精品 | 少妇性l交大片欧洲热妇乱xxx | 夜夜躁日日躁狠狠久久av | 日日天日日夜日日摸 | 女人被男人躁得好爽免费视频 | 国精产品一品二品国精品69xx | 久久亚洲中文字幕无码 | 久久久久免费看成人影片 | yw尤物av无码国产在线观看 | 亚洲性无码av中文字幕 | 久热国产vs视频在线观看 | 欧美人与牲动交xxxx | 无码人妻久久一区二区三区不卡 | 国产无遮挡又黄又爽又色 | 少妇无套内谢久久久久 | 兔费看少妇性l交大片免费 | 无码帝国www无码专区色综合 | 狠狠色丁香久久婷婷综合五月 | 亚洲国产综合无码一区 | 国产亚洲精品久久久久久久 | 强伦人妻一区二区三区视频18 | 国产莉萝无码av在线播放 | 亚洲の无码国产の无码步美 | 亚洲国产成人a精品不卡在线 | 精品欧美一区二区三区久久久 | 大色综合色综合网站 | 特黄特色大片免费播放器图片 | 国产欧美熟妇另类久久久 | 特大黑人娇小亚洲女 | 又色又爽又黄的美女裸体网站 | 特黄特色大片免费播放器图片 | 亚洲高清偷拍一区二区三区 | 中文字幕 人妻熟女 | 女人高潮内射99精品 | 亚洲精品国产品国语在线观看 | 亚洲一区二区三区在线观看网站 | 亚洲国产精华液网站w | 最新版天堂资源中文官网 | 日日天日日夜日日摸 | 精品久久久无码中文字幕 | 中文字幕av日韩精品一区二区 | 亚洲va欧美va天堂v国产综合 | √8天堂资源地址中文在线 | 色狠狠av一区二区三区 | 人人妻人人藻人人爽欧美一区 | 精品偷拍一区二区三区在线看 | 天干天干啦夜天干天2017 | 色综合久久中文娱乐网 | 国产高潮视频在线观看 | 国语自产偷拍精品视频偷 | 成人精品天堂一区二区三区 | 国产97在线 | 亚洲 | 免费中文字幕日韩欧美 | 又大又紧又粉嫩18p少妇 | 麻豆精品国产精华精华液好用吗 | 亚洲欧美综合区丁香五月小说 | 亚洲日韩乱码中文无码蜜桃臀网站 | 国产精品igao视频网 | 久久久久99精品成人片 | 中文字幕中文有码在线 | 精品aⅴ一区二区三区 | 久久天天躁夜夜躁狠狠 | 在线观看国产一区二区三区 | 久久熟妇人妻午夜寂寞影院 | 欧美老人巨大xxxx做受 | 亚洲一区二区三区无码久久 | 人妻无码αv中文字幕久久琪琪布 | 亚洲欧美综合区丁香五月小说 | 成人精品一区二区三区中文字幕 | 亚洲第一无码av无码专区 | 51国偷自产一区二区三区 | 婷婷五月综合激情中文字幕 | 老熟女重囗味hdxx69 | 亚洲国产精品无码一区二区三区 | 76少妇精品导航 | 久久综合给久久狠狠97色 | 亚洲成av人综合在线观看 | 国产免费久久久久久无码 | 一区二区三区高清视频一 | 无码人妻出轨黑人中文字幕 | 免费网站看v片在线18禁无码 | 东京热无码av男人的天堂 | 亚洲a无码综合a国产av中文 | 亚欧洲精品在线视频免费观看 | 亚洲色欲久久久综合网东京热 | 爱做久久久久久 | 国产香蕉97碰碰久久人人 | 久久精品国产一区二区三区 | 少妇愉情理伦片bd | 国产绳艺sm调教室论坛 | 77777熟女视频在线观看 а天堂中文在线官网 | 国产av人人夜夜澡人人爽麻豆 | 亚洲s码欧洲m码国产av | 性欧美熟妇videofreesex | 高清无码午夜福利视频 | 国产精品99久久精品爆乳 | 精品国产乱码久久久久乱码 | 无码任你躁久久久久久久 | 国产精品办公室沙发 | 欧洲熟妇色 欧美 | 成人精品视频一区二区三区尤物 | 高清无码午夜福利视频 | 国产九九九九九九九a片 | ass日本丰满熟妇pics | 学生妹亚洲一区二区 | 国产成人综合在线女婷五月99播放 | 一个人免费观看的www视频 | 精品无码成人片一区二区98 | 亚洲人成影院在线观看 | 性色欲网站人妻丰满中文久久不卡 | 亚洲国产欧美日韩精品一区二区三区 | 伊人久久大香线焦av综合影院 | 人人爽人人澡人人人妻 | 人人妻人人澡人人爽欧美精品 | 日本精品久久久久中文字幕 | 亚洲国产精品久久人人爱 | 亚洲综合久久一区二区 | 中文字幕人妻无码一区二区三区 | 国内揄拍国内精品少妇国语 | 日韩亚洲欧美中文高清在线 | 精品一区二区三区波多野结衣 | 天天做天天爱天天爽综合网 | 18禁黄网站男男禁片免费观看 | 国产成人无码av一区二区 | 欧美变态另类xxxx | 久久久久久久久888 | 欧美zoozzooz性欧美 | 国产绳艺sm调教室论坛 | 国产97在线 | 亚洲 | 欧美丰满熟妇xxxx性ppx人交 | 国内精品人妻无码久久久影院 | 一个人看的www免费视频在线观看 | 18禁止看的免费污网站 | 国产两女互慰高潮视频在线观看 |