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
Describe the bug
The newest RHEL 7 comes by default with CMake version 2.8.12.2 in the official OS repos.
However the "VERSION_GREATER_EQUAL" comparison was added in 3.7. Thus the build became broken on this platform after merging #610.
To Reproduce
Attempt to build for VxWorks using RHEL 7.x as the host platform. Make file generation fails immediately with:
CMake Error at /home/jphickey/cfecfs/github/osal/src/os/vxworks/CMakeLists.txt:48 (if):
if given arguments:
"CMAKE_SYSTEM_VERSION" "VERSION_GREATER_EQUAL" "7.0"
Unknown arguments specified
Instead of maintaining a one-off implementation for VxWorks 6,
use the POSIX implementation for this module. The only
incompatibility is the prototype for mkdir() which is missing
the second argument. This can be worked around with a simple
compatibility macro that is only enabled for VxWorks 6.x builds.
Describe the bug
The newest RHEL 7 comes by default with CMake version 2.8.12.2 in the official OS repos.
However the "VERSION_GREATER_EQUAL" comparison was added in 3.7. Thus the build became broken on this platform after merging #610.
To Reproduce
Attempt to build for VxWorks using RHEL 7.x as the host platform. Make file generation fails immediately with:
Expected behavior
Build should succeed.
Code snips
osal/src/os/vxworks/CMakeLists.txt
Line 48 in d698a4d
System observed on:
Red Hat Enterprise Linux Workstation release 7.9 (Maipo)
Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: