You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(yes, I'm starting with trying to cross-compile hello world as a standalone dependent app with some restructuring of the file tree - since the example is dependent on being built within the cyclonedds source tree)
I've set Cyclone_HOST_PREFIX in my toolchain file to where I installed the host-architecture build of cyclonedds and cyclonedds-cxx (In my case, ~/cyclonedds_host)
The question is - how do I add Cyclone_HOST_PREFIX to the search path so that find_library() works for cycloneddsidlcxx? I get the following:
CMake Error at /home/adodd/cyclonedds_host/lib/cmake/CycloneDDS-CXX/idlcxx/Generate.cmake:27 (find_library):
Could not find _idlcxx_shared_lib using the following names:
cycloneddsidlcxx
Call Stack (most recent call first):
idl/CMakeLists.txt:5 (idlcxx_generate)
Adding Cyclone_HOST_PREFIX to CMAKE_FIND_ROOT_PATH does not work.
The text was updated successfully, but these errors were encountered:
In addition, after a bit of digging into cmake_fu, I figured out WHY my current protobuf cross-compile stuff is working in another project (One of the variables I set overrides find_program), and adapted it to the variables used by Generate.cmake:
Now the problem is that the generator expects the -o option to work properly, but it does not - I am guessing this is due to #148 not yet being adapted to eclipse-cyclonedds/cyclonedds#1263
Hi @Entropy512
I got a similar issue as "Could not find _idlc_executable using the following names: idlc" when I set -DBUILD_EXAMPLES=ON.
Could you please help to trouble shooting it?
I did not find cyclonedds_host in my machine
This is somewhat of a continuation of the conversation in eclipse-cyclonedds/cyclonedds#794 (comment)
I'm trying to start from @stan-guer 's comment, adapting it to use cyclonedds-cxx:
(yes, I'm starting with trying to cross-compile hello world as a standalone dependent app with some restructuring of the file tree - since the example is dependent on being built within the cyclonedds source tree)
I've set Cyclone_HOST_PREFIX in my toolchain file to where I installed the host-architecture build of cyclonedds and cyclonedds-cxx (In my case, ~/cyclonedds_host)
The question is - how do I add Cyclone_HOST_PREFIX to the search path so that find_library() works for cycloneddsidlcxx? I get the following:
Adding Cyclone_HOST_PREFIX to CMAKE_FIND_ROOT_PATH does not work.
The text was updated successfully, but these errors were encountered: