Skip to content

Commit a4b39dc

Browse files
committed
Revert "Diagnosis to find out why buiildbots fails"
This reverts commit e586536.
1 parent e586536 commit a4b39dc

File tree

2 files changed

+0
-27
lines changed

2 files changed

+0
-27
lines changed

openmp/runtime/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,6 @@ if("${LIBOMP_ARCH}" STREQUAL "mic")
111111
endif()
112112
set(LIBOMP_FORTRAN_MODULES "${RUNTIMES_FLANG_MODULES_ENABLED}" CACHE BOOL
113113
"Create Fortran module files? (requires fortran compiler)")
114-
message("OpenMP: RUNTIMES_FLANG_MODULES_ENABLED=${RUNTIMES_FLANG_MODULES_ENABLED}")
115-
message("OpenMP: LIBOMP_FORTRAN_MODULES=${LIBOMP_FORTRAN_MODULES}")
116114

117115
# - Support for universal fat binary builds on Mac
118116
# - Having this extra variable allows people to build this library as a universal library

openmp/runtime/src/CMakeLists.txt

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -458,15 +458,10 @@ if(${LIBOMP_OMPT_SUPPORT})
458458
endif()
459459

460460

461-
include(CMakePrintHelpers)
462-
463461
# Build the modules files if a Fortran compiler is available.
464462
# Only LLVM_ENABLE_RUNTIMES=openmp is supported, LLVM_ENABLE_PROJECTS=openmp
465463
# has been deprecated.
466-
message("OpenMP2: RUNTIMES_FLANG_MODULES_ENABLED=${RUNTIMES_FLANG_MODULES_ENABLED}")
467-
message("OpenMP2: LIBOMP_FORTRAN_MODULES=${LIBOMP_FORTRAN_MODULES}")
468464
if(LIBOMP_FORTRAN_MODULES)
469-
message("OpenMP2: Adding libomp-mod targets")
470465
add_library(libomp-mod OBJECT
471466
omp_lib.F90
472467
)
@@ -489,24 +484,4 @@ if(LIBOMP_FORTRAN_MODULES)
489484
${CMAKE_CURRENT_BINARY_DIR}/omp_lib.h
490485
DESTINATION ${destination}
491486
)
492-
493-
#cmake_print_properties(TARGETS libomp-mod)
494487
endif()
495-
cmake_print_variables(RUNTIMES_FLANG_MODULES_ENABLED LIBOMP_FORTRAN_MODULES RUNTIMES_FLANG_MODULES_ENABLED_default RUNTIMES_OUTPUT_RESOURCE_MOD_DIR RUNTIMES_INSTALL_RESOURCE_MOD_PATH)
496-
497-
if (EXISTS "${CMAKE_BINARY_DIR}/CMakeCache.txt")
498-
file(READ "${CMAKE_BINARY_DIR}/CMakeCache.txt" _outcache)
499-
message("CMakeCache.txt:\n${_outcache}")
500-
else ()
501-
message("No cache file")
502-
endif ()
503-
504-
505-
if (EXISTS "${CMAKE_BINARY_DIR}/CMakeFiles/CMakeConfigureLog.yaml")
506-
file(READ "${CMAKE_BINARY_DIR}/CMakeFiles/CMakeConfigureLog.yaml" _outcache)
507-
message("CMakeConfigureLog.yaml:\n${_outcache}")
508-
else ()
509-
message("No CMakeConfigureLog.yaml")
510-
endif ()
511-
512-

0 commit comments

Comments
 (0)