Open HappySamuel opened 4 months ago
magic_enum
git clone https://github.com/Neargye/magic_enum.git
cd magic_enum && mkdir build && cd build
cmake ..
make -j$(nproc)
sudo make install
Solution 2 - Missing of Missing of nvcv/Tensor.hpp I briefly looked how this is solved in the dockerfile for the ISAAC-ROS Docker.
As I am using this on Orin, these are the aarch64 sources - you will need x86-sources if you try to run that on your DGX or Desktop-Machine.
sudo dpkg -i nvcv-lib-0.5.0_beta_DP-cuda12-aarch64-linux.deb
sudo dpkg -i nvcv-dev-0.5.0_beta_DP-cuda12-aarch64-linux.deb
Hi @wegmanma
Check with you, which Jetpack version are you running on your Orin ?
Best, Samuel
Hi @wegmanma
Check with you, which Jetpack version are you running on your Orin ?
Best, Samuel
Hello Samuel
I am running Jetpack 6 (Jetson Linux R36.3.0) with the latest ISAAC ROS.
Best regards
Solution 1 - Missing of
magic_enum
git clone https://github.com/Neargye/magic_enum.git cd magic_enum && mkdir build && cd build cmake .. make -j$(nproc) sudo make install
Still can not work...
Solution 1 - Missing of
magic_enum
git clone https://github.com/Neargye/magic_enum.git cd magic_enum && mkdir build && cd build cmake .. make -j$(nproc) sudo make install
Still can not work...
It seems a little different with my error:
--- stderr: gxf_isaac_image_flip
In file included from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/parameter_registrar.hpp:31,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/registrar.hpp:28,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/component.hpp:31,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/std/allocator.hpp:21,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/multimedia/video.hpp:28,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_image_pipeline/isaac_ros_gxf_extensions/gxf_isaac_image_flip/gxf/image_flip.hpp:26,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_image_pipeline/isaac_ros_gxf_extensions/gxf_isaac_image_flip/gxf/image_flip.cpp:18:
/home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/expected_macro.hpp:24:10: fatal error: magic_enum.hpp: No such file or directory
24 | #include "magic_enum.hpp" // NOLINT(build/include)
| ^~~~~~~~~~~~~~~~
compilation terminated.
gmake[2]: *** [CMakeFiles/gxf_isaac_image_flip.dir/build.make:90: CMakeFiles/gxf_isaac_image_flip.dir/gxf/image_flip.cpp.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
In file included from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/parameter_registrar.hpp:31,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/registrar.hpp:28,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/component.hpp:31,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/std/codelet.hpp:21,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/std/default_extension.hpp:28,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/std/extension_factory_helper.hpp:24,
from /home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_image_pipeline/isaac_ros_gxf_extensions/gxf_isaac_image_flip/gxf/image_flip_extension.cpp:20:
/home/breeze/Desktop/workplace/IsaacSim-ros_workspaces/humble_ws/src/isaac_ros_nitros/isaac_ros_gxf/gxf/core/include/gxf/core/expected_macro.hpp:24:10: fatal error: magic_enum.hpp: No such file or directory
24 | #include "magic_enum.hpp" // NOLINT(build/include)
| ^~~~~~~~~~~~~~~~
compilation terminated.
gmake[2]: *** [CMakeFiles/gxf_isaac_image_flip.dir/build.make:76: CMakeFiles/gxf_isaac_image_flip.dir/gxf/image_flip_extension.cpp.o] Error 1
gmake[1]: *** [CMakeFiles/Makefile2:137: CMakeFiles/gxf_isaac_image_flip.dir/all] Error 2
gmake: *** [Makefile:146: all] Error 2
---
Failed <<< gxf_isaac_image_flip [1.76s, exited with code 2]
Hi
I faced the following error when
colcon build --symlink-install
theisaac_ros_nitros
and bumps into several errors. Some of them already found the solution, but some still unresolved. Help neededError 1: Missing of magic_enum
Error 2: Missing of nvcv/Tensor.hpp
Best Samuel