Replies: 2 comments 8 replies
-
@piyushmz I think the include path is incorrect. You have to add at least:
But please use a modern build system like cmake or bazel which are officially supported by iceoryx. If you want to use it in a bare metal make file you will encounter now and in the future a lot of maintenance issues where you are on your own. It will be some effort to use cmake but I really recommend to invest the time here otherwise you will have to invest much more time to get iceoryx and your whole project running whenever we update iceoryx or some other underlying library changes. And there are big refactorings coming this year so that you will most likely face the challenge. |
Beta Was this translation helpful? Give feedback.
-
@elfenpiff Thanks for clarification. I'm on Jetson Orin Ubuntu 20.04
I've included the icedelivery_in_c publisher in the main code for testing purposes. Same is the error I get
Can you please review where I'm going wrong. |
Beta Was this translation helpful? Give feedback.
-
I'm having a camera driver which is written in C with Makefile having gstreamer files in it which generates an
main.elf
file to run multiple cameras simultaneously. I want to include Iceoryx in a Makefile, is there any Makefile present so that I can take some reference.In Makefile i've included following
I get the following error while making
One more thing Suppose I create simple file and include iceoryx in it how do I compile it without CMakeLists.txt? I want to compile it as a way like we do
gcc -o main main.c
for outputThanks
Beta Was this translation helpful? Give feedback.
All reactions