The build took 00h 04m 35s and was SUCCESSFUL.
The program in this build is written in the following languages, according to sloccount:
SLOC | Language |
---|---|
3,237 |
ansic |
3,237 |
total |
The process tree of the build process is here.
To avoid scrolling, you may jump to the last line of the
invocation of makepkg
that was used to build this
package.
Removed vanilla repositories from pacman.conf and added:
Copied permanent toolchain into container-local sysroot
/toolchain_root/sysroot --> /sysroot/sysroot
/toolchain_root/lib --> /sysroot/lib
/toolchain_root/sbin --> /sysroot/sbin
/toolchain_root/lib64 --> /sysroot/lib64
/toolchain_root/etc --> /sysroot/etc
/toolchain_root/share --> /sysroot/share
/toolchain_root/bin --> /sysroot/bin
/toolchain_root/var --> /sysroot/var
/toolchain_root/usr --> /sysroot/usr
/toolchain_root/glibc-build --> /sysroot/glibc-build
/toolchain_root/x86_64-pc-linux-gnu --> /sysroot/x86_64-pc-linux-gnu
/toolchain_root/include --> /sysroot/include
/toolchain_root/libexec --> /sysroot/libexec
CMD: sudo -u tuscan PATH=/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin CC=clang CXX=clang++ red makepkg --noextract --syncdeps --skipinteg --skippgpcheck --skipchecksums --noconfirm --nocolor --log --noprogressbar --nocheck
==> Making package: dfc 3.0.5-1 (Thu Apr 13 11:24:28 UTC 2017)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> WARNING: Using existing $srcdir/ tree
==> Starting build()...
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
the old evaluation rules produce:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
but the new evaluation rules produce:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
the old evaluation rules produce:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
but the new evaluation rules produce:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:6 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'${_compiler_id_version_compute}
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
but the new evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __BORLANDC__ = 0xVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
the old evaluation rules produce:
'
/* __BORLANDC__ = 0xVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
but the new evaluation rules produce:
'
/* __BORLANDC__ = 0xVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Compaq-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __DECC_VER = VVRRTPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
the old evaluation rules produce:
'
/* __DECC_VER = VVRRTPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
but the new evaluation rules produce:
'
/* __DECC_VER = VVRRTPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake:3 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/HP-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __HP_cc = VVRRPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
the old evaluation rules produce:
'
/* __HP_cc = VVRRPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
but the new evaluation rules produce:
'
/* __HP_cc = VVRRPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __INTEL_COMPILER = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
/* __INTEL_COMPILER = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
/* __INTEL_COMPILER = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake:23 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
the old evaluation rules produce:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
but the new evaluation rules produce:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* _MSC_VER = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
the old evaluation rules produce:
'
/* _MSC_VER = VVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
but the new evaluation rules produce:
'
/* _MSC_VER = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __WATCOMC__ = VVRP + 1100 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
the old evaluation rules produce:
'
/* __WATCOMC__ = VVRP + 1100 */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
but the new evaluation rules produce:
'
/* __WATCOMC__ = VVRP + 1100 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/SunPro-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
the old evaluation rules produce:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
but the new evaluation rules produce:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
the old evaluation rules produce:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
but the new evaluation rules produce:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __WATCOMC__ = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
the old evaluation rules produce:
'
/* __WATCOMC__ = VVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
but the new evaluation rules produce:
'
/* __WATCOMC__ = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/XL-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/zOS-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
the old evaluation rules produce:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
but the new evaluation rules produce:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
the old evaluation rules produce:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
but the new evaluation rules produce:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:6 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'${_compiler_id_version_compute}
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
but the new evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __BORLANDC__ = 0xVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
the old evaluation rules produce:
'
/* __BORLANDC__ = 0xVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
but the new evaluation rules produce:
'
/* __BORLANDC__ = 0xVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Compaq-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __DECC_VER = VVRRTPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
the old evaluation rules produce:
'
/* __DECC_VER = VVRRTPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
but the new evaluation rules produce:
'
/* __DECC_VER = VVRRTPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake:3 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/HP-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __HP_cc = VVRRPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
the old evaluation rules produce:
'
/* __HP_cc = VVRRPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
but the new evaluation rules produce:
'
/* __HP_cc = VVRRPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __INTEL_COMPILER = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
/* __INTEL_COMPILER = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
/* __INTEL_COMPILER = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake:23 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
the old evaluation rules produce:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
but the new evaluation rules produce:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* _MSC_VER = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
the old evaluation rules produce:
'
/* _MSC_VER = VVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
but the new evaluation rules produce:
'
/* _MSC_VER = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __WATCOMC__ = VVRP + 1100 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
the old evaluation rules produce:
'
/* __WATCOMC__ = VVRP + 1100 */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
but the new evaluation rules produce:
'
/* __WATCOMC__ = VVRP + 1100 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/SunPro-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
the old evaluation rules produce:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
but the new evaluation rules produce:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
the old evaluation rules produce:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
but the new evaluation rules produce:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __WATCOMC__ = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
the old evaluation rules produce:
'
/* __WATCOMC__ = VVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
but the new evaluation rules produce:
'
/* __WATCOMC__ = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/XL-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/zOS-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
the old evaluation rules produce:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
but the new evaluation rules produce:
'
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
#endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
the old evaluation rules produce:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
but the new evaluation rules produce:
'
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__ARMCC_VERSION/100000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__ARMCC_VERSION/10000 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__ARMCC_VERSION % 10000)
#endif
'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake:6 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'${_compiler_id_version_compute}
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
but the new evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__apple_build_version__)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __BORLANDC__ = 0xVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
the old evaluation rules produce:
'
/* __BORLANDC__ = 0xVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
but the new evaluation rules produce:
'
/* __BORLANDC__ = 0xVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__BORLANDC__>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__BORLANDC__ & 0xFF)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__clang_major__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__clang_minor__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake:12 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Compaq-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __DECC_VER = VVRRTPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
the old evaluation rules produce:
'
/* __DECC_VER = VVRRTPPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
but the new evaluation rules produce:
'
/* __DECC_VER = VVRRTPPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__DECC_VER/10000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__DECC_VER/100000 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__DECC_VER % 10000)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_RELEASE_MAJOR)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_RELEASE_MINOR)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__CODEGEARC_VERSION__ & 0xFFFF)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake:3 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEGRITY_MAJOR_VERSION)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEGRITY_MINOR_VERSION)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEGRITY_PATCH_VERSION)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__GNUC__)
# if defined(__GNUC_MINOR__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__GNUC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/HP-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __HP_cc = VVRRPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
the old evaluation rules produce:
'
/* __HP_cc = VVRRPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
but the new evaluation rules produce:
'
/* __HP_cc = VVRRPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__HP_cc/10000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__HP_cc/100 % 100)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__HP_cc % 100)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __INTEL_COMPILER = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
the old evaluation rules produce:
'
/* __INTEL_COMPILER = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define /usrSIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrSIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
but the new evaluation rules produce:
'
/* __INTEL_COMPILER = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__INTEL_COMPILER/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER_UPDATE)
# else
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define @PREFIX@SIMULATE_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@SIMULATE_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake:23 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID \"MSVC\"
# endif'
the old evaluation rules produce:
'
# if defined(_MSC_VER)
# define /usrSIMULATE_ID "MSVC"
# endif'
but the new evaluation rules produce:
'
# if defined(_MSC_VER)
# define @PREFIX@SIMULATE_ID "MSVC"
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
the old evaluation rules produce:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
but the new evaluation rules produce:
'
# if defined(_SGI_COMPILER_VERSION)
/* _SGI_COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_SGI_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_SGI_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_SGI_COMPILER_VERSION % 10)
# else
/* _COMPILER_VERSION = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_COMPILER_VERSION/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_COMPILER_VERSION/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_COMPILER_VERSION % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* _MSC_VER = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
the old evaluation rules produce:
'
/* _MSC_VER = VVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define /usrCOMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
but the new evaluation rules produce:
'
/* _MSC_VER = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(_MSC_VER / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define @PREFIX@COMPILER_VERSION_TWEAK @MACRO_DEC@(_MSC_BUILD)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __WATCOMC__ = VVRP + 1100 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
the old evaluation rules produce:
'
/* __WATCOMC__ = VVRP + 1100 */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
but the new evaluation rules produce:
'
/* __WATCOMC__ = VVRP + 1100 */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@((__WATCOMC__ - 1100) / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PGIC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PGIC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
the old evaluation rules produce:
'
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
but the new evaluation rules produce:
'
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__PATHCC__)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__PATHCC_PATCHLEVEL__)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/SunPro-C-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
the old evaluation rules produce:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define /usrCOMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define /usrCOMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
but the new evaluation rules produce:
'
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
the old evaluation rules produce:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
but the new evaluation rules produce:
'
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000000)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__TI_COMPILER_VERSION__/1000 % 1000)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__TI_COMPILER_VERSION__ % 1000)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake:4 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __WATCOMC__ = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
the old evaluation rules produce:
'
/* __WATCOMC__ = VVRR */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
but the new evaluation rules produce:
'
/* __WATCOMC__ = VVRR */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__WATCOMC__ / 100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__WATCOMC__ % 10)
# endif'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/XL-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at /usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake:2 (set):
Policy CMP0053 is not set: Simplify variable reference and escape sequence
evaluation. Run "cmake --help-policy CMP0053" for policy details. Use the
cmake_policy command to set the policy and suppress this warning.
For input:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
the old evaluation rules produce:
'
/* __IBMC__ = VRP */
# define /usrCOMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define /usrCOMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define /usrCOMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
but the new evaluation rules produce:
'
/* __IBMC__ = VRP */
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)'
Using the old result for compatibility since the policy is not set.
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/Compiler/zOS-C-DetermineCompiler.cmake:4 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:16 (include)
/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake:44 (_readFile)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:124 (compiler_id_detection)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:142 (CMAKE_DETERMINE_COMPILER_ID_WRITE)
/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake:40 (CMAKE_DETERMINE_COMPILER_ID_BUILD)
/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake:118 (CMAKE_DETERMINE_COMPILER_ID)
CMakeLists.txt:4 (project)
This warning is for project developers. Use -Wno-dev to suppress it.
-- The C compiler identification is unknown
-- Check for working C compiler: /usr/bin/clang
-- Check for working C compiler: /usr/bin/clang -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Looking for gettext
-- Looking for gettext - found
-- Found Libintl: /usr/include
-- Configuring done
-- Generating done
-- Build files have been written to: /tmp/dfc/src/dfc-3.0.5
Scanning dependencies of target dfc.pot-update
[ 7%] Generating dfc.pot
[ 7%] Built target dfc.pot-update
Scanning dependencies of target generate-dfc-fr-po
[ 15%] Generating fr.po
...................... done.
[ 23%] Built target generate-dfc-fr-po
Scanning dependencies of target generate-dfc-fr-gmo
[ 30%] Generating fr.gmo
/tmp/dfc/src/dfc-3.0.5/po/fr.po: 64 translated messages.
[ 30%] Built target generate-dfc-fr-gmo
Scanning dependencies of target update-gmo
[ 30%] Built target update-gmo
Scanning dependencies of target dfc
[ 38%] Building C object CMakeFiles/dfc.dir/src/csv.c.o
[ 46%] Building C object CMakeFiles/dfc.dir/src/dotfile.c.o
In file included from /tmp/dfc/src/dfc-3.0.5/src/dotfile.c:39:
In file included from /usr/include/stdlib.h:24:
/usr/include/features.h:148:3: warning: "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-W#warnings]
# warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
^
1 warning generated.
[ 53%] Building C object CMakeFiles/dfc.dir/src/dfc.c.o
In file included from /tmp/dfc/src/dfc-3.0.5/src/dfc.c:47:
In file included from /usr/include/unistd.h:25:
/usr/include/features.h:148:3: warning: "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-W#warnings]
# warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
^
1 warning generated.
[ 61%] Building C object CMakeFiles/dfc.dir/src/html.c.o
[ 69%] Building C object CMakeFiles/dfc.dir/src/list.c.o
[ 76%] Building C object CMakeFiles/dfc.dir/src/tex.c.o
In file included from /tmp/dfc/src/dfc-3.0.5/src/tex.c:41:
In file included from /usr/include/stdio.h:27:
/usr/include/features.h:148:3: warning: "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-W#warnings]
# warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
^
1 warning generated.
[ 84%] Building C object CMakeFiles/dfc.dir/src/text.c.o
[ 92%] Building C object CMakeFiles/dfc.dir/src/util.c.o
In file included from /tmp/dfc/src/dfc-3.0.5/src/util.c:39:
In file included from /usr/include/stdlib.h:24:
/usr/include/features.h:148:3: warning: "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-W#warnings]
# warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
^
1 warning generated.
[100%] Linking C executable bin/RELEASE/dfc
[100%] Built target dfc
==> Entering fakeroot environment...
==> Starting package()...
[ 7%] Built target dfc.pot-update
[ 23%] Built target generate-dfc-fr-po
[ 30%] Built target generate-dfc-fr-gmo
[ 30%] Built target update-gmo
[100%] Built target dfc
Install the project...
-- Install configuration: "RELEASE"
-- Installing: /tmp/dfc/pkg/dfc/usr/bin/dfc
-- Installing: /tmp/dfc/pkg/dfc/usr/share/man/man1/dfc.1
-- Installing: /tmp/dfc/pkg/dfc/etc/xdg/dfc/dfcrc
-- Installing: /tmp/dfc/pkg/dfc/usr/share/man/fr/man1/dfc.1
-- Installing: /tmp/dfc/pkg/dfc/etc/xdg/dfc/fr/dfcrc
-- Installing: /tmp/dfc/pkg/dfc/usr/share/doc/dfc/AUTHORS
-- Installing: /tmp/dfc/pkg/dfc/usr/share/doc/dfc/CHANGELOG
-- Installing: /tmp/dfc/pkg/dfc/usr/share/doc/dfc/HACKING
-- Installing: /tmp/dfc/pkg/dfc/usr/share/doc/dfc/LICENSE
-- Installing: /tmp/dfc/pkg/dfc/usr/share/doc/dfc/README
-- Installing: /tmp/dfc/pkg/dfc/usr/share/doc/dfc/TRANSLATORS
-- Installing: /tmp/dfc/pkg/dfc/usr/share/locale/fr/LC_MESSAGES/dfc.mo
==> Tidying install...
-> Removing doc files...
-> Purging unwanted files...
==> Checking for packaging issue...
==> Creating package "dfc"...
-> Generating .PKGINFO file...
-> Generating .BUILDINFO file...
error: invalid option '--noprogressbar'
-> Adding install file...
-> Generating .MTREE file...
-> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: dfc 3.0.5-1 (Thu Apr 13 11:24:42 UTC 2017)
CMD: pacman --query --file dfc-3.0.5-1-x86_64.pkg.tar.xz
Creating hybrid package for 'dfc'
Trying to find vanilla package 'dfc'...
CMD: pacman --query --file /mirror/dfc-3.0.5-1.pkg.tar.xz
Package file has the following structure:
/.PKGINFO
/.INSTALL
/.MTREE
/etc/xdg/dfc/dfcrc
/etc/xdg/dfc/fr/dfcrc
/usr/bin/dfc
/usr/share/locale/fr/LC_MESSAGES/dfc.mo
/usr/share/man/fr/man1/dfc.1.gz
/usr/share/man/man1/dfc.1.gz
/usr/share/doc/dfc/CHANGELOG
/usr/share/doc/dfc/LICENSE
/usr/share/doc/dfc/AUTHORS
/usr/share/doc/dfc/README
/usr/share/doc/dfc/TRANSLATORS
/usr/share/doc/dfc/HACKING
/usr/share/licenses/dfc/LICENSE
Generating .MTREE
CMD: bsdtar -czf .MTREE --format=mtree --options=!all,use-set,type,uid,mode,time,size,md5,sha256,link .PKGINFO .INSTALL etc usr
Tar-ing up files
CMD: bsdtar -cf - .PKGINFO .INSTALL etc usr .MTREE
CMD: xz -c -z
Successfully ran bsdtar -cf - .PKGINFO .INSTALL etc usr .MTREE | xz -c -z
CMD: bsdtar -tqf dfc.pkg.tar.xz .PKGINFO
Created package at path /var/cache/pacman/pkg/dfc.pkg.tar.xz
Attempting to access local repository, attempt 1
CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/dfc.pkg.tar.xz
Attempting to access local repository, attempt 2
CMD: repo-add /var/cache/pacman/pkg/tuscan.db.tar /var/cache/pacman/pkg/dfc.pkg.tar.xz
==> Extracting database to a temporary location...
==> Extracting database to a temporary location...
==> Adding package '/var/cache/pacman/pkg/dfc.pkg.tar.xz'
-> Computing checksums...
-> Creating 'desc' db entry...
-> Creating 'files' db entry...
==> Creating updated database file '/var/cache/pacman/pkg/tuscan.db.tar'
Printing Cmake errors
CMD: Cmake errors '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeError.log'
Compiling the C compiler identification source file "CMakeCCompilerId.c" failed.
Compiler: /usr/bin/clang
Build flags:
Id flags:
The output was:
1
CMakeCCompilerId.c:172:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_MAJOR DEC(__clang_major__)
^
CMakeCCompilerId.c:173:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_MINOR DEC(__clang_minor__)
^
CMakeCCompilerId.c:174:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
^
3 errors generated.
Compiling the C compiler identification source file "CMakeCCompilerId.c" failed.
Compiler: /usr/bin/clang
Build flags:
Id flags: -c
The output was:
1
CMakeCCompilerId.c:172:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_MAJOR DEC(__clang_major__)
^
CMakeCCompilerId.c:173:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_MINOR DEC(__clang_minor__)
^
CMakeCCompilerId.c:174:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
^
3 errors generated.
Compiling the C compiler identification source file "CMakeCCompilerId.c" failed.
Compiler: /usr/bin/clang
Build flags:
Id flags: -Aa
The output was:
1
clang-3.8: warning: argument unused during compilation: '-Aa'
CMakeCCompilerId.c:172:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_MAJOR DEC(__clang_major__)
^
CMakeCCompilerId.c:173:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_MINOR DEC(__clang_minor__)
^
CMakeCCompilerId.c:174:10: error: macro name must be an identifier
# define /usrCOMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
^
3 errors generated.
Checking whether the C compiler is IAR using "" did not match "IAR .+ Compiler":
clang-3.8: error: no input files
Printing Cmake output
CMD: Cmake output '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeOutput.log'
The system is: Linux - 4.10.6-1-ARCH - x86_64
Determining if the C compiler works passed with the following output:
Change Dir: /tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_88ee6/fast"
/usr/bin/make -f CMakeFiles/cmTC_88ee6.dir/build.make CMakeFiles/cmTC_88ee6.dir/build
make[1]: Entering directory '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_88ee6.dir/testCCompiler.c.o
/usr/bin/clang -o CMakeFiles/cmTC_88ee6.dir/testCCompiler.c.o -c /tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_88ee6
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_88ee6.dir/link.txt --verbose=1
/usr/bin/clang CMakeFiles/cmTC_88ee6.dir/testCCompiler.c.o -o cmTC_88ee6
make[1]: Leaving directory '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2b16f/fast"
/usr/bin/make -f CMakeFiles/cmTC_2b16f.dir/build.make CMakeFiles/cmTC_2b16f.dir/build
make[1]: Entering directory '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2b16f.dir/CMakeCCompilerABI.c.o
/usr/bin/clang -o CMakeFiles/cmTC_2b16f.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_2b16f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2b16f.dir/link.txt --verbose=1
/usr/bin/clang CMakeFiles/cmTC_2b16f.dir/CMakeCCompilerABI.c.o -o cmTC_2b16f
make[1]: Leaving directory '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp'
Determining if the function gettext exists passed with the following output:
Change Dir: /tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c76fd/fast"
/usr/bin/make -f CMakeFiles/cmTC_c76fd.dir/build.make CMakeFiles/cmTC_c76fd.dir/build
make[1]: Entering directory '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c76fd.dir/CheckFunctionExists.c.o
/usr/bin/clang -DCHECK_FUNCTION_EXISTS=gettext -o CMakeFiles/cmTC_c76fd.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.5/Modules/CheckFunctionExists.c
Linking C executable cmTC_c76fd
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c76fd.dir/link.txt --verbose=1
/usr/bin/clang -DCHECK_FUNCTION_EXISTS=gettext CMakeFiles/cmTC_c76fd.dir/CheckFunctionExists.c.o -o cmTC_c76fd
make[1]: Leaving directory '/tmp/dfc/src/dfc-3.0.5/CMakeFiles/CMakeTmp'