[Openmp-commits] [PATCH] D125370: Make LIBOMP_CONFIGURED_LIBFLAGS a list instead of string

Jonathan Peyton via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Thu Jun 2 08:51:11 PDT 2022


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe27ce281399d: [OpenMP][libomp] Make LIBOMP_CONFIGURED_LIBFLAGS a list instead of string (authored by msimberg, committed by jlpeyton).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D125370/new/

https://reviews.llvm.org/D125370

Files:
  openmp/runtime/cmake/LibompHandleFlags.cmake


Index: openmp/runtime/cmake/LibompHandleFlags.cmake
===================================================================
--- openmp/runtime/cmake/LibompHandleFlags.cmake
+++ openmp/runtime/cmake/LibompHandleFlags.cmake
@@ -144,7 +144,8 @@
   endif()
   set(libflags_local ${libflags_local} ${LIBOMP_LIBFLAGS})
   libomp_setup_flags(libflags_local)
-  set(${libflags} ${libflags_local} PARENT_SCOPE)
+  libomp_string_to_list("${libflags_local}" libflags_local_list)
+  set(${libflags} ${libflags_local_list} PARENT_SCOPE)
 endfunction()
 
 # Fortran flags


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125370.433766.patch
Type: text/x-patch
Size: 554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20220602/4d408576/attachment.bin>


More information about the Openmp-commits mailing list