Skip to content

Commit

Permalink
add debug print for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Jul 27, 2020
1 parent dda3ba4 commit e66c8f4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/clib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ endif ()

include(CheckTypeSize)
check_type_size("size_t" SIZEOF_SIZE_T)
MESSAGE("size_t ${SIZEOF_SIZE_T}")
CHECK_TYPE_SIZE("long long" SIZEOF_LONG_LONG)
MESSAGE("long long ${SIZEOF_LONG_LONG}")
if (NOT ${SIZEOF_SIZE_T} EQUAL ${SIZEOF_LONG_LONG})
message (FATAL_ERROR "size_t and long long must be the same size!")
endif ()
Expand Down

0 comments on commit e66c8f4

Please sign in to comment.