[libcxx-commits] [PATCH] D110285: [libc++] Use CMake interface targets to setup benchmark flags
Joe Loser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Sep 22 13:15:59 PDT 2021
jloser added inline comments.
================
Comment at: libcxx/benchmarks/CMakeLists.txt:100
+ if (LIBSTDCXX_FILESYSTEM_TEST)
+ target_link_libraries(cxx-benchmarks-flags-native INTERFACE "-lstdc++fs")
+ endif()
----------------
Nit: are we consistent whether to quote arguments or not? For example, below we say `-lc++fs -lc++experimental`, i.e. unquoted, but here we quote `"-lstdc++fs"`. I'd like to be consistent at least within this neighborhood of code; I don't feel strongly on either way.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110285/new/
https://reviews.llvm.org/D110285
More information about the libcxx-commits
mailing list