From c73175238e50b2281f24d3c6ab3ce92826ac240c Mon Sep 17 00:00:00 2001 From: Martin Dahl Date: Fri, 27 Dec 2019 14:14:04 +0100 Subject: [PATCH] Bump to eloquent --- README.md | 6 +++--- msg_gen/Cargo.toml | 3 +-- rcl/Cargo.toml | 3 +-- rcl/build.rs | 4 +++- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7c04e29..29c6528 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ How to use A couple of examples are included in examples/ ``` -. /opt/ros/dashing/setup.sh +. /opt/ros/eloquent/setup.sh cargo build cargo run --example subscriber_with_thread ``` @@ -20,12 +20,12 @@ An example application can be found here "] edition = "2018" [dependencies] -libc = "0.2.0" paste = "0.1.6" widestring = "0.4.0" [build-dependencies] -bindgen = "0.50.0" +bindgen = "0.52.0" diff --git a/rcl/build.rs b/rcl/build.rs index 7f90e6b..cb4775e 100644 --- a/rcl/build.rs +++ b/rcl/build.rs @@ -22,7 +22,9 @@ fn main() { } println!("cargo:rustc-link-lib=dylib=rcl"); - println!("cargo:rustc-link-lib=dylib=rcl_logging_noop"); + // println!("cargo:rustc-link-lib=dylib=rcl_logging_noop"); + // default logging seem to be changed to spdlog + println!("cargo:rustc-link-lib=dylib=rcl_logging_spdlog"); println!("cargo:rustc-link-lib=dylib=rcutils"); println!("cargo:rustc-link-lib=dylib=rmw"); println!("cargo:rustc-link-lib=dylib=rmw_implementation");