Lines Matching +full:cmake +full:- +full:args

5 TODO(chandlerc): Currently this expresses include-based dependencies as
21 Re-implemented here to avoid adding a dependency on skylib.
23 Args:
37 Args:
55 rule_suffix = "_".join(opts.replace("-", "_").replace("=", "_").split(" "))
62 cmd = (("$(location %s) " + "-I external/llvm-project/llvm/include " +
63 "-I external/llvm-project/clang/include " +
64 … "-I $$(dirname $(location %s)) " + ("%s $(location %s) --long-string-literals=0 " +
65 "-o $@")) % (
94 This function double-quotes the given string (in case it contains spaces or
96 double-quotes, and backslashes) that may be present.
98 Args:
117 Args:
130 """Expands #cmakedefine, #cmakedefine01, and CMake variables in a text file.
132 Args:
136 cmake_vars: a string containing the CMake variables, as generated by
149 # TODO(phawkins): the set of CMake variables was hardcoded for expediency.
150 # However, we should really detect many of these via configure-time tests.
152 # The set of CMake variables common to all targets.
176 "PACKAGE_STRING": "llvm tensorflow-trunk",
177 "PACKAGE_VERSION": "tensorflow-trunk",
181 # The set of CMake variables common to POSIX targets.
244 # CMake variables specific to the Linux platform
252 # CMake variables specific to the FreeBSD platform
258 # CMake variables specific to the Darwin (Mac OS X) platform.
264 # CMake variables specific to the Windows platform.
298 # Select a set of CMake variables based on the platform.
305 llvm_target_cmake_vars("X86", "x86_64-apple-darwin"),
313 llvm_target_cmake_vars("AArch64", "arm64-apple-darwin"),
321 llvm_target_cmake_vars("AArch64", "aarch64-unknown-linux_gnu"),
329 llvm_target_cmake_vars("PowerPC", "powerpc64le-unknown-linux_gnu"),
337 llvm_target_cmake_vars("X86", "x86_64-pc-win32"),
344 llvm_target_cmake_vars("X86", "x86_64-unknown-freebsd"),
351 llvm_target_cmake_vars("SystemZ", "systemz-unknown-linux_gnu"),
359 llvm_target_cmake_vars("X86", "x86_64-unknown-linux_gnu"),
368 "@org_tensorflow//tensorflow:freebsd": ["-ldl", "-lm", "-lpthread", "-lexecinfo"],
369 "//conditions:default": ["-ldl", "-lm", "-lpthread"],
394 "-Zc:inline",
395 "-Zc:strictStrings",
396 "-Zc:rvalueCast",
397 "-Oi",
398 "-wd4141",
399 "-wd4146",
400 "-wd4180",
401 "-wd4244",
402 "-wd4258",
403 "-wd4267",
404 "-wd4291",
405 "-wd4345",
406 "-wd4351",
407 "-wd4355",
408 "-wd4456",
409 "-wd4457",
410 "-wd4458",
411 "-wd4459",
412 "-wd4503",
413 "-wd4624",
414 "-wd4722",
415 "-wd4800",
416 "-wd4100",
417 "-wd4127",
418 "-wd4512",
419 "-wd4505",
420 "-wd4610",
421 "-wd4510",
422 "-wd4702",
423 "-wd4245",
424 "-wd4706",
425 "-wd4310",
426 "-wd4701",
427 "-wd4703",
428 "-wd4389",
429 "-wd4611",
430 "-wd4805",
431 "-wd4204",
432 "-wd4577",
433 "-wd4091",
434 "-wd4592",
435 "-wd4319",
436 "-wd4324",
437 "-w14062",
438 "-we4238",