Changes between Version 9 and Version 10 of toolchain/install
- Timestamp:
- Feb 10, 2017, 3:40:14 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
toolchain/install
v9 v10 56 56 This means that the local system driver needs a version of libstdc++.so.6 that defines the symbol CXXABI_1.3.9 (meaning application binary interface version 1.3.9). 57 57 The version of libstdc++ included in robomap3 probably doesn't define this symbol. You can make sure with {{{ strings /.../robomap3/1.7.3/core2-64/sysroots/core2-64-poky-linux/usr/lib/libstdc++.so.6 | grep CXXABI_ }}}. 58 So we need to preload the libstdc++ library of the system to avoid robomap3 one to be loaded 58 So we need to preload the libstdc++ library of the system to avoid robomap3 one to be loaded. 59 59 To achieve this we need to set the LD_PRELOAD environment variable like this {{{ LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libstdc++.so.6 ./LineFollower_simulator_nrt ... }}} 60 60