Re: [ros-users] Problem compiling with camera1394 package.

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Brian Gerkey
日付:  
To: ros-users
題目: Re: [ros-users] Problem compiling with camera1394 package.
On Sun, Jul 4, 2010 at 1:20 PM, Renato Samperio
<> wrote:
> I sent a wrongly assumption for a problem you helped me to solve with your
> advices.
>
> Though, I made a last modification and it compiled.
>
> I updated the manifest.xml as:
>
>   <export>
>     <cpp cflags="-I${prefix}/src/nodes -I${prefix}/cfg/cpp -Wall -g"/>
>   </export>


The "-I${prefix}/src/nodes" argument is the problem. By adding
src/nodes to the compiler's search path, you're causing confusion
between a system header, <features.h>, and a file by the same name
inside src/nodes. Was that argument already there, or did you add it?

    brian.