ros error : c++: error: $(catkin_LIBRARIES): 没有那个文件或目录

卧槽,真是。。。。。。。。。。。。。。。。。。。。。。。。瞎眼了。

一个半小时才找出错误来。。。。。

c++: error: $(catkin_LIBRARIES): 没有那个文件或目录

Oh my God! I′m quite blind .... apologies for any inconvenience. I need my glasses to see ... I′m absolutely a disaster. It was exactly what you said to me. I didn′t realice it. ${catkin_LIBRARIES} rather than $(catkin_LIBRARIES). Thanks a lot!

我都要崩溃了。。。。。。。。

另一个错误:

Could not find a package configuration file provided by "PCL" (requested
  version 1.2) with any of the following names:
    PCLConfig.cmake
    pcl-config.cmake
  Add the installation prefix of "PCL" to CMAKE_PREFIX_PATH or set "PCL_DIR"
  to a directory containing one of the above files.  If "PCL" provides a
  separate development package or SDK, be sure it has been installed.
-- Configuring incomplete, errors occurred!

我的CmakeLists.txt:

cmake_minimum_required(VERSION 2.8.3)
project(second_pcl)

## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package( PCL REQUIRED)    #这个可能要单独写出来
find_package(catkin REQUIRED
     roscpp rospy pcl_conversions pcl_ros sensor_msgs
# PCL REQUIRED
)

#find_package( PCL REQUIRED)

include_directories(include ${PCL_INCLUDE_DIRS})
link_directories(${PCL_LIBRARY_DIRS})

add_executable(pcl_create  src/pcl_create.cpp )
target_link_libraries(pcl_create   ${catkin_LIBRARIES}   ${PCL_LIBRARIES})

这下没问题了,遇到这个错误,期间还自己重新编译了 PCL 包 。。。但应该还是CmakeLists.txt里的错误

时间: 2024-10-11 12:44:26

ros error : c++: error: $(catkin_LIBRARIES): 没有那个文件或目录的相关文章

如何解决编译linux内核(解决声卡问题),遭遇fatal error: linux/limits.h: 没有那个文件或目录

最近帮一位上海的朋友搞一块小板,在ubuntu15.04 vivid上已经加载了对应了.ko驱动包 但关键是系统根本就枚举不到该声卡ALC5640,试了OpenSUSE也是一样的结果,看来是内核漏加载了什么模块. 所以准备重新编译Linux内核3.19.3,结果运行: make?menuconfig 得到错误提示: ? ? ? ? local_lim.h:38:26: fatal error: linux/limits.h ? 应该是在linux目录下找不到limits.h文件.有诸多兄弟碰到过

usr/bin/mysqladmin: refresh failed; error: 'Unknown error'

debian wheezy 升级后, 因为授权错误, 导致密码给修改, 在debian的mysql safe下也无法进入. 我在/etc/mysql/my.cnf 里面已经修改了bind-address 为局域网ip 进而执行了 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; 然后重载授权表: FLUSH PRIVILEGES; 然后重启后, 虽然可以远程链接, 但是debia

“fatal error: hdf5.h: 没有那个文件或目录”解决方法

問題一: Installing Caffe without CUDA: fatal error: cublas_v2.h No such file: 在Makefile.config中修改,將CPU_ONLY := 1打開. 問題二:“fatal error: hdf5.h: 没有那个文件或目录”解决方法 参考自http://blog.csdn.net/hongye000000/article/details/51043913 Step 1 在Makefile.config文件的第85行,添加/

linux学习(六) Ubuntu14.04(64位)配置android环境报错(...adb": error=2, 没有那个文件或目录)的解决方案

1.问题描述: 最近测试android环境的时候,运行程序,提示以下错误信息: Cannot run program error=2, 没有那个文件或目录' while attempting to get adb. 运行环境是 unbuntu 14.04 64位系统; 2.问题原因: 在网上搜索答案的时候,找到了问题的原因:因为系统是64位的,而Android sdk只有32bit的程序.所以就存在这不兼容的问题,缺少一些sdk运行的库. 3.解决方案: 很多软件只有32位的,还有很多比较依赖3

64位Ubuntu配置android环境报错(...adb": error=2, 没有那个文件或目录)

Failed to get the adb version: Cannot run program "/home/jayhomzhou/android/android-sdk/platform-tools/adb": error=2, 没有那个文件或目录 64位系统,Ubuntu11.04,搭建JDK,Android环境,把android SDK复制过来后,里面的adb和其它命令的都不能使用. 错误提示:android-sdk-linux_86/platform-tools/adb:

GNU Linux 64位系统中fatal error: stdio.h: 没有那个文件或目录的错误的解决方法

在64位系统中,编写一个C语言程序后,使用gcc进行编译时,出现了如下的错误: test.c:1:19: fatal  error: stdio.h: 没有那个文件或目录 #include <stdio.h> 针对以上的情况,对于在32环境下一般不会出现这个问题,因为已经把libc的头文件包括在系统中了,那么针对这样的情况,主要检查是否安装了完备的开发环境: build-essential package - Installs the following collection to compi

fatal error C1854: 无法覆盖在创建对象文件.obj”的预编译头过程中形成的信息

原因: 将stdafx.cpp 的预编译头属性  由 创建预编译头(/Yc) 改成了 使用预编译头(/Yu) 解决: 改回为 创建预编译头(/Yc) 参考文档 http://blog.csdn.net/you_lan_hai/article/details/6966038 fatal error C1854: 无法覆盖在创建对象文件.obj"的预编译头过程中形成的信息

ubuntu14.04(64)下运行报(...adb": error=2, 没有那个文件或目录)

错误信息为:Cannot run program "/home/xxxx/android/android-sdk/platform-tools/adb": error=2, 没有那个文件或目录 原因:由于是64位的linux系统,而Android SDK只有32位的,需要安装一些支持包才能使用.安装: sudo aptitude install lib32bz2-1.0 解决了这个问题.不过,又报了一个新的错误:编译找不到 libstdc++.so.6 文件 接下来我们再安装一个程序:

pyaudio安装缺少文件问题error: portaudio.h: 没有那个文件或目录

1.在安装pyaudio时,报错failed error: portaudio.h: 没有那个文件或目录 2.pyaudio的运行需要依赖于portaudio这个库,应该先安装一个portaudio库 3.portaudio安装步骤: a)下载portaudio库http://portaudio.com/download.html b)将下载的文件进行解压 c)进入解压后的portaudio文件,依次执行命令: ./configure make make install 4.到此portaudi