Advertisement
Guest User

Untitled

a guest
Apr 15th, 2021
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.46 KB | None | 0 0
  1. ########################
  2. # EXTERNAL cache entries
  3. ########################
  4.  
  5. //Path to a program.
  6. CMAKE_ADDR2LINE:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/addr2line.exe
  7.  
  8. //Path to a program.
  9. CMAKE_AR:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/ar.exe
  10.  
  11. //Choose the type of build, options are: None Debug Release RelWithDebInfo
  12. // MinSizeRel ...
  13. CMAKE_BUILD_TYPE:STRING=Release
  14.  
  15. //CXX compiler.
  16. CMAKE_CXX_COMPILER:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/x86_64-w64-mingw32-g++.exe
  17.  
  18. //A wrapper around 'ar' adding the appropriate '--plugin' option
  19. // for the GCC compiler
  20. CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/x86_64-w64-mingw32-gcc-ar.exe
  21.  
  22. //A wrapper around 'ranlib' adding the appropriate '--plugin' option
  23. // for the GCC compiler
  24. CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/x86_64-w64-mingw32-gcc-ranlib.exe
  25.  
  26. //Flags used by the CXX compiler during all build types.
  27. CMAKE_CXX_FLAGS:STRING=-fdiagnostics-color
  28.  
  29. //Flags used by the CXX compiler during DEBUG builds.
  30. CMAKE_CXX_FLAGS_DEBUG:STRING=-g
  31.  
  32. //Flags used by the CXX compiler during MINSIZEREL builds.
  33. CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
  34.  
  35. //Flags used by the CXX compiler during RELEASE builds.
  36. CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
  37.  
  38. //Flags used by the CXX compiler during RELWITHDEBINFO builds.
  39. CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
  40.  
  41. //Libraries linked by default with all C++ applications.
  42. CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
  43.  
  44. //C compiler.
  45. CMAKE_C_COMPILER:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/x86_64-w64-mingw32-gcc.exe
  46.  
  47. //A wrapper around 'ar' adding the appropriate '--plugin' option
  48. // for the GCC compiler
  49. CMAKE_C_COMPILER_AR:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/x86_64-w64-mingw32-gcc-ar.exe
  50.  
  51. //A wrapper around 'ranlib' adding the appropriate '--plugin' option
  52. // for the GCC compiler
  53. CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/x86_64-w64-mingw32-gcc-ranlib.exe
  54.  
  55. //Flags used by the C compiler during all build types.
  56. CMAKE_C_FLAGS:STRING=-fdiagnostics-color
  57.  
  58. //Flags used by the C compiler during DEBUG builds.
  59. CMAKE_C_FLAGS_DEBUG:STRING=-g
  60.  
  61. //Flags used by the C compiler during MINSIZEREL builds.
  62. CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
  63.  
  64. //Flags used by the C compiler during RELEASE builds.
  65. CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
  66.  
  67. //Flags used by the C compiler during RELWITHDEBINFO builds.
  68. CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
  69.  
  70. //Libraries linked by default with all C applications.
  71. CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32
  72.  
  73. //Path to a program.
  74. CMAKE_DLLTOOL:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/dlltool.exe
  75.  
  76. //Flags used by the linker during all build types.
  77. CMAKE_EXE_LINKER_FLAGS:STRING=
  78.  
  79. //Flags used by the linker during DEBUG builds.
  80. CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
  81.  
  82. //Flags used by the linker during MINSIZEREL builds.
  83. CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
  84.  
  85. //Flags used by the linker during RELEASE builds.
  86. CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
  87.  
  88. //Flags used by the linker during RELWITHDEBINFO builds.
  89. CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  90.  
  91. //Enable/Disable output of compile commands during generation.
  92. CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF
  93.  
  94. //Convert GNU import libraries to MS format (requires Visual Studio)
  95. CMAKE_GNUtoMS:BOOL=OFF
  96.  
  97. //Install path prefix, prepended onto install directories.
  98. CMAKE_INSTALL_PREFIX:PATH=E:/dev/libcxx/bin
  99.  
  100. //Path to a program.
  101. CMAKE_LINKER:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/ld.exe
  102.  
  103. //make program
  104. CMAKE_MAKE_PROGRAM:FILEPATH=C:/PROGRA~1/ninja/bin/ninja.exe
  105.  
  106. //Flags used by the linker during the creation of modules during
  107. // all build types.
  108. CMAKE_MODULE_LINKER_FLAGS:STRING=
  109.  
  110. //Flags used by the linker during the creation of modules during
  111. // DEBUG builds.
  112. CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
  113.  
  114. //Flags used by the linker during the creation of modules during
  115. // MINSIZEREL builds.
  116. CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
  117.  
  118. //Flags used by the linker during the creation of modules during
  119. // RELEASE builds.
  120. CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
  121.  
  122. //Flags used by the linker during the creation of modules during
  123. // RELWITHDEBINFO builds.
  124. CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  125.  
  126. //Path to a program.
  127. CMAKE_NM:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/nm.exe
  128.  
  129. //Path to a program.
  130. CMAKE_OBJCOPY:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/objcopy.exe
  131.  
  132. //Path to a program.
  133. CMAKE_OBJDUMP:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/objdump.exe
  134.  
  135. //Value Computed by CMake
  136. CMAKE_PROJECT_DESCRIPTION:STATIC=
  137.  
  138. //Value Computed by CMake
  139. CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
  140.  
  141. //Value Computed by CMake
  142. CMAKE_PROJECT_NAME:STATIC=libcxx
  143.  
  144. //Path to a program.
  145. CMAKE_RANLIB:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/ranlib.exe
  146.  
  147. //RC compiler
  148. CMAKE_RC_COMPILER:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/windres.exe
  149.  
  150. //Flags for Windows Resource Compiler during all build types.
  151. CMAKE_RC_FLAGS:STRING=
  152.  
  153. //Flags for Windows Resource Compiler during DEBUG builds.
  154. CMAKE_RC_FLAGS_DEBUG:STRING=
  155.  
  156. //Flags for Windows Resource Compiler during MINSIZEREL builds.
  157. CMAKE_RC_FLAGS_MINSIZEREL:STRING=
  158.  
  159. //Flags for Windows Resource Compiler during RELEASE builds.
  160. CMAKE_RC_FLAGS_RELEASE:STRING=
  161.  
  162. //Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
  163. CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=
  164.  
  165. //Path to a program.
  166. CMAKE_READELF:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/readelf.exe
  167.  
  168. //Flags used by the linker during the creation of shared libraries
  169. // during all build types.
  170. CMAKE_SHARED_LINKER_FLAGS:STRING=
  171.  
  172. //Flags used by the linker during the creation of shared libraries
  173. // during DEBUG builds.
  174. CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
  175.  
  176. //Flags used by the linker during the creation of shared libraries
  177. // during MINSIZEREL builds.
  178. CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
  179.  
  180. //Flags used by the linker during the creation of shared libraries
  181. // during RELEASE builds.
  182. CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
  183.  
  184. //Flags used by the linker during the creation of shared libraries
  185. // during RELWITHDEBINFO builds.
  186. CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  187.  
  188. //If set, runtime paths are not added when installing shared libraries,
  189. // but are added when building.
  190. CMAKE_SKIP_INSTALL_RPATH:BOOL=OFF
  191.  
  192. //If set, runtime paths are not added when using shared libraries.
  193. CMAKE_SKIP_RPATH:BOOL=OFF
  194.  
  195. //Flags used by the linker during the creation of static libraries
  196. // during all build types.
  197. CMAKE_STATIC_LINKER_FLAGS:STRING=
  198.  
  199. //Flags used by the linker during the creation of static libraries
  200. // during DEBUG builds.
  201. CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
  202.  
  203. //Flags used by the linker during the creation of static libraries
  204. // during MINSIZEREL builds.
  205. CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
  206.  
  207. //Flags used by the linker during the creation of static libraries
  208. // during RELEASE builds.
  209. CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
  210.  
  211. //Flags used by the linker during the creation of static libraries
  212. // during RELWITHDEBINFO builds.
  213. CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
  214.  
  215. //Path to a program.
  216. CMAKE_STRIP:FILEPATH=C:/Program Files/mingw-w64/x86_64-8.1.0-posix-seh-rt_v6-rev0/mingw64/bin/strip.exe
  217.  
  218. CMAKE_SYSTEM_NAME:STRING=Windows
  219.  
  220. //If this value is on, makefiles will be generated without the
  221. // .SILENT directive, and all commands will be echoed to the console
  222. // during the make. This is useful for debugging only. With Visual
  223. // Studio IDE projects all commands are done without /nologo.
  224. CMAKE_VERBOSE_MAKEFILE:BOOL=OFF
  225.  
  226. //Build and use the LLVM unwinder.
  227. LIBCXXABI_USE_LLVM_UNWINDER:BOOL=OFF
  228.  
  229. //A semicolon separated list of ABI macros to define in the site
  230. // config header.
  231. LIBCXX_ABI_DEFINES:STRING=
  232.  
  233. //Ignore auto-detection and force use of the Itanium ABI.
  234. LIBCXX_ABI_FORCE_ITANIUM:BOOL=OFF
  235.  
  236. //Ignore auto-detection and force use of the Microsoft ABI.
  237. LIBCXX_ABI_FORCE_MICROSOFT:BOOL=OFF
  238.  
  239. //The inline ABI namespace used by libc++. It defaults to __n where
  240. // `n` is the current ABI version.
  241. LIBCXX_ABI_NAMESPACE:STRING=
  242.  
  243. //Unstable ABI of libc++.
  244. LIBCXX_ABI_UNSTABLE:BOOL=OFF
  245.  
  246. //ABI version of libc++. Can be either 1 or 2, where 2 is currently
  247. // not stable. Defaults to 1.
  248. LIBCXX_ABI_VERSION:STRING=1
  249.  
  250. //Use alternate GCC toolchain when building the native benchmarks
  251. LIBCXX_BENCHMARK_NATIVE_GCC_TOOLCHAIN:STRING=
  252.  
  253. //Build the benchmarks against the specified native STL.
  254. //\n The value must be one of libc++/libstdc++
  255. LIBCXX_BENCHMARK_NATIVE_STDLIB:STRING=
  256.  
  257. //Arguments to pass when running the benchmarks using check-cxx-benchmarks
  258. LIBCXX_BENCHMARK_TEST_ARGS:STRING=--benchmark_min_time=0.01
  259.  
  260. //Build 32 bit libc++.
  261. LIBCXX_BUILD_32_BITS:BOOL=OFF
  262.  
  263. //Build libc++ with an externalized threading library.
  264. //\n This option may only be set to ON when LIBCXX_ENABLE_THREADS=ON
  265. LIBCXX_BUILD_EXTERNAL_THREAD_LIBRARY:BOOL=OFF
  266.  
  267. //Configure libcxx for use within an IDE
  268. LIBCXX_CONFIGURE_IDE:BOOL=OFF
  269.  
  270. //The Profile-rt library used to build with code coverage
  271. LIBCXX_COVERAGE_LIBRARY:STRING=
  272.  
  273. //Specify C++ ABI library to use.
  274. LIBCXX_CXX_ABI:STRING=default
  275.  
  276. //The path to libc++abi library.
  277. LIBCXX_CXX_ABI_LIBRARY_PATH:PATH=E:/dev/libcxx/build/lib
  278.  
  279. //Disable #warnings about conflicting macros.
  280. LIBCXX_DISABLE_MACRO_CONFLICT_WARNINGS:BOOL=OFF
  281.  
  282. //Use and install a linker script for the given ABI library
  283. LIBCXX_ENABLE_ABI_LINKER_SCRIPT:BOOL=OFF
  284.  
  285. //Enable assertions independent of build mode.
  286. LIBCXX_ENABLE_ASSERTIONS:BOOL=OFF
  287.  
  288. //Use exceptions.
  289. LIBCXX_ENABLE_EXCEPTIONS:BOOL=ON
  290.  
  291. //Build libc++experimental.a
  292. LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY:BOOL=ON
  293.  
  294. //Build filesystem as part of the main libc++ library
  295. LIBCXX_ENABLE_FILESYSTEM:BOOL=OFF
  296.  
  297. //Build libc++ with support for the global filesystem namespace.
  298. LIBCXX_ENABLE_GLOBAL_FILESYSTEM_NAMESPACE:BOOL=ON
  299.  
  300. //Build libc++ with support for a monotonic clock.
  301. //\n This option may only be set to OFF when LIBCXX_ENABLE_THREADS=OFF.
  302. LIBCXX_ENABLE_MONOTONIC_CLOCK:BOOL=ON
  303.  
  304. //Build libc++ with definitions for operator new/delete. This option
  305. // can
  306. //\n be used to disable the definitions when libc++abi is expected
  307. // to provide
  308. //\n them
  309. LIBCXX_ENABLE_NEW_DELETE_DEFINITIONS:BOOL=ON
  310.  
  311. //Enable the parallel algorithms library. This requires the PSTL
  312. // to be available.
  313. LIBCXX_ENABLE_PARALLEL_ALGORITHMS:BOOL=OFF
  314.  
  315. //Compile with pedantic enabled.
  316. LIBCXX_ENABLE_PEDANTIC:BOOL=OFF
  317.  
  318. //Use run time type information.
  319. LIBCXX_ENABLE_RTTI:BOOL=ON
  320.  
  321. //Build libc++ as a shared library.
  322. LIBCXX_ENABLE_SHARED:BOOL=OFF
  323.  
  324. //Build libc++ as a static library.
  325. LIBCXX_ENABLE_STATIC:BOOL=ON
  326.  
  327. //Use a static copy of the ABI library when linking libc++.
  328. //\n This option cannot be used with LIBCXX_ENABLE_ABI_LINKER_SCRIPT.
  329. LIBCXX_ENABLE_STATIC_ABI_LIBRARY:BOOL=OFF
  330.  
  331. //Build libc++ with support for stdin/std::cin.
  332. LIBCXX_ENABLE_STDIN:BOOL=ON
  333.  
  334. //Build libc++ with support for stdout/std::cout.
  335. LIBCXX_ENABLE_STDOUT:BOOL=ON
  336.  
  337. //Build libc++ with support for threads.
  338. LIBCXX_ENABLE_THREADS:BOOL=ON
  339.  
  340. //Build libc++ with support for thread-unsafe C functions
  341. LIBCXX_ENABLE_THREAD_UNSAFE_C_FUNCTIONS:BOOL=ON
  342.  
  343. //Fail and stop if a warning is triggered.
  344. LIBCXX_ENABLE_WERROR:BOOL=OFF
  345.  
  346. //Executor to use when running tests.
  347. LIBCXX_EXECUTOR:STRING=C:/Users/Vladislav/AppData/Local/Programs/Python/Python37/python.exe E:/dev/libcxx/src/test/../utils/run.py
  348.  
  349. //Use alternate GCC toolchain.
  350. LIBCXX_GCC_TOOLCHAIN:STRING=
  351.  
  352. //Enable generating code coverage.
  353. LIBCXX_GENERATE_COVERAGE:BOOL=OFF
  354.  
  355. //Build libc++ with an externalized threading API.
  356. //\n This option may only be set to ON when LIBCXX_ENABLE_THREADS=ON.
  357. LIBCXX_HAS_EXTERNAL_THREAD_API:BOOL=OFF
  358.  
  359. //Build libc++ with support for the Musl C library
  360. LIBCXX_HAS_MUSL_LIBC:BOOL=OFF
  361.  
  362. //Ignore auto-detection and force use of pthread API
  363. LIBCXX_HAS_PTHREAD_API:BOOL=OFF
  364.  
  365. //Ignore auto-detection and force use of win32 thread API
  366. LIBCXX_HAS_WIN32_THREAD_API:BOOL=OFF
  367.  
  368. //Do not export any symbols from the static library.
  369. LIBCXX_HERMETIC_STATIC_LIBRARY:BOOL=OFF
  370.  
  371. //Enable per TU ABI insulation by default. To be used by vendors.
  372. LIBCXX_HIDE_FROM_ABI_PER_TU_BY_DEFAULT:BOOL=OFF
  373.  
  374. //Build the libc++ benchmarks and their dependencies
  375. LIBCXX_INCLUDE_BENCHMARKS:BOOL=ON
  376.  
  377. //Build the libc++ documentation.
  378. LIBCXX_INCLUDE_DOCS:BOOL=ON
  379.  
  380. //Build the libc++ tests.
  381. LIBCXX_INCLUDE_TESTS:BOOL=OFF
  382.  
  383. //Install libc++experimental.a
  384. LIBCXX_INSTALL_EXPERIMENTAL_LIBRARY:BOOL=ON
  385.  
  386. //Install the libc++ headers.
  387. LIBCXX_INSTALL_HEADERS:BOOL=ON
  388.  
  389. //Define libc++ header destination prefix.
  390. LIBCXX_INSTALL_HEADER_PREFIX:STRING=
  391.  
  392. //Install the libc++ library.
  393. LIBCXX_INSTALL_LIBRARY:BOOL=ON
  394.  
  395. //Define libc++ destination prefix.
  396. LIBCXX_INSTALL_PREFIX:STRING=
  397.  
  398. //Install the static libc++ library.
  399. LIBCXX_INSTALL_STATIC_LIBRARY:BOOL=ON
  400.  
  401. //Install libc++ support headers.
  402. LIBCXX_INSTALL_SUPPORT_HEADERS:BOOL=ON
  403.  
  404. //Version of libc++abi's ABI to re-export from libc++ when re-exporting
  405. // is enabled.
  406. //\n Note that this
  407. // is not related to the version of libc++'s ABI itself!
  408. LIBCXX_LIBCPPABI_VERSION:STRING=2
  409.  
  410. //Define suffix of library directory name (32/64)
  411. LIBCXX_LIBDIR_SUFFIX:STRING=
  412.  
  413. //Whether the libc++ tests should link with the shared libc++ library
  414. LIBCXX_LINK_TESTS_WITH_SHARED_LIBCXX:BOOL=OFF
  415.  
  416. //Whether the libc++ tests should link with the shared libc++abi
  417. // library
  418. LIBCXX_LINK_TESTS_WITH_SHARED_LIBCXXABI:BOOL=OFF
  419.  
  420. //Configuration variant to use for LIT.
  421. LIBCXX_LIT_VARIANT:STRING=libcxx
  422.  
  423. //Enable overwriting darwins libc++ installation.
  424. LIBCXX_OVERRIDE_DARWIN_INSTALL:BOOL=OFF
  425.  
  426. //Use alternate sysroot.
  427. LIBCXX_SYSROOT:STRING=
  428.  
  429. //TargetInfo to use when setting up test environment.
  430. LIBCXX_TARGET_INFO:STRING=libcxx.test.target_info.MingwLocalTI
  431.  
  432. //Use alternate target triple.
  433. LIBCXX_TARGET_TRIPLE:STRING=
  434.  
  435. //Additonal linker flags to pass when compiling the tests
  436. LIBCXX_TEST_COMPILER_FLAGS:STRING=
  437.  
  438. //The Lit testing configuration to use when running the tests.
  439. LIBCXX_TEST_CONFIG:STRING=E:/dev/libcxx/src/test/lit.site.cfg.in
  440.  
  441. //Test gdb pretty printers.
  442. LIBCXX_TEST_GDB_PRETTY_PRINTERS:BOOL=OFF
  443.  
  444. //Additonal linker flags to pass when compiling the tests
  445. LIBCXX_TEST_LINKER_FLAGS:STRING=
  446.  
  447. //A list of parameters to run the Lit test suite with.
  448. LIBCXX_TEST_PARAMS:STRING=
  449.  
  450. //The implementation of typeinfo comparison to use.
  451. LIBCXX_TYPEINFO_COMPARISON_IMPLEMENTATION:STRING=
  452.  
  453. //Use compiler-rt instead of libgcc
  454. LIBCXX_USE_COMPILER_RT:BOOL=OFF
  455.  
  456. //Command used to spawn lit
  457. LLVM_EXTERNAL_LIT:STRING=
  458.  
  459. //Path to llvm/include
  460. LLVM_INCLUDE_DIR:PATH=E:/dev/llvm/src/include
  461.  
  462. //Default options for lit
  463. LLVM_LIT_ARGS:STRING=-sv --show-xfail --show-unsupported
  464.  
  465. LLVM_PATH:PATH=E:/dev/llvm/src
  466.  
  467. //Define the sanitizer used to build the library and tests
  468. LLVM_USE_SANITIZER:STRING=
  469.  
  470. //Dependencies for the target
  471. cxx_experimental_LIB_DEPENDS:STATIC=general;cxx_static;general;-nodefaultlibs;general;pthread;general;m;general;atomic;general;mingw32;gcc_s;gcc;moldname;mingwex;msvcrt;advapi32;shell32;user32;kernel32;mingw32;gcc_s;gcc;moldname;mingwex;msvcrt;
  472.  
  473. //Dependencies for the target
  474. cxx_shared_LIB_DEPENDS:STATIC=general;-nodefaultlibs;general;pthread;general;m;general;atomic;general;mingw32;gcc_s;gcc;moldname;mingwex;msvcrt;advapi32;shell32;user32;kernel32;mingw32;gcc_s;gcc;moldname;mingwex;msvcrt;general;;
  475.  
  476. //Dependencies for the target
  477. cxx_static_LIB_DEPENDS:STATIC=general;-nodefaultlibs;general;pthread;general;m;general;atomic;general;mingw32;gcc_s;gcc;moldname;mingwex;msvcrt;advapi32;shell32;user32;kernel32;mingw32;gcc_s;gcc;moldname;mingwex;msvcrt;
  478.  
  479. //Value Computed by CMake
  480. libcxx_BINARY_DIR:STATIC=E:/dev/libcxx/build
  481.  
  482. //Value Computed by CMake
  483. libcxx_SOURCE_DIR:STATIC=E:/dev/libcxx/src
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement