Michael A. Eriksen
Michael A. Eriksen
When checking out this repo I get OS: Windows ``` error: invalid path 'ur_robot_driver/resources/ursim_driver/ursim/aux/.vol/urcap_ros_control.installation' ``` Note: The ROS1 version of these driver do not have this issue.
## Bug report **Required Info:** - Operating System: - Windows 11, Visual Studio 2022 - Installation type: - from source I'm trying to build ros2 from source in debug mode...
``` cmake_minimum_required(VERSION 3.25) project(MSCL CXX) file(GLOB_RECURSE SOURCE_FILES MSCL/source/*.cpp) file(GLOB_RECURSE HEADER_FILES MSCL/source/*.h) list(REMOVE_ITEM SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/MSCL/source/mscl/Communication/WsdaFinder.cpp) list(REMOVE_ITEM HEADER_FILES ${CMAKE_CURRENT_SOURCE_DIR}/MSCL/source/mscl/Communication/WsdaFinder.h) list(REMOVE_ITEM HEADER_FILES ${CMAKE_CURRENT_SOURCE_DIR}/MSCL/source/stdafx.h) if (UNIX) list(REMOVE_ITEM SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/MSCL/source/mscl/Communication/UpnpDeviceFinderCallback.cpp) list(REMOVE_ITEM HEADER_FILES ${CMAKE_CURRENT_SOURCE_DIR}/MSCL/source/mscl/Communication/UpnpDeviceFinderCallback.h) list(REMOVE_ITEM SOURCE_FILES...
When executing this with ubuntu + gcc I get a segfault. The exact same code works fine with Windows + Visual studio and Mac + clang. I have tried with...