1--- 2colour: true 3:unity: 4 :plugins: [] 5:tools: 6 :test_compiler: 7 :name: compiler 8 :executable: clang 9 :arguments: 10 - "-c" 11 - "-Wall" 12 - "-Wextra" 13 - "-Werror" 14 - "-Wcast-qual" 15 - "-Wconversion" 16 - "-Wdisabled-optimization" 17 - "-Wformat=2" 18 - "-Winit-self" 19 - "-Winline" 20 - "-Winvalid-pch" 21 - "-Wmissing-include-dirs" 22 - "-Wnonnull" 23 - "-Wpacked" 24 - "-Wpointer-arith" 25 - "-Wswitch-default" 26 - "-Wstrict-aliasing" 27 - "-Wstrict-overflow=5" 28 - "-Wuninitialized" 29 - "-Wunused" 30 - "-Wreturn-type" 31 - "-Wshadow" 32 - "-Wundef" 33 - "-Wwrite-strings" 34 - "-Wno-nested-externs" 35 - "-Wno-unused-parameter" 36 - "-Wno-variadic-macros" 37 - "-Wbad-function-cast" 38 - "-fms-extensions" 39 - "-fno-omit-frame-pointer" 40 - "-ffloat-store" 41 - "-fno-common" 42 - "-fstrict-aliasing" 43 - "-std=gnu99" 44 - "-pedantic" 45 - "-O0" 46 - '-I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE' 47 - '-I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR' 48 - "-D$: COLLECTION_DEFINES_TEST_AND_VENDOR" 49 - "${1}" 50 - "-o ${2}" 51 :test_linker: 52 :name: linker 53 :executable: clang 54 :arguments: 55 - "${1}" 56 - "-lm" 57 - "-m64" 58 - "-o ${2}" 59:extension: 60 :object: ".o" 61 :executable: ".exe" 62:paths: 63 :test: 64 - src/ 65 - "../src/" 66 - testdata/ 67 - tests/ 68:defines: 69 :test: 70 - UNITY_INCLUDE_DOUBLE 71 - UNITY_SUPPORT_64 72 - UNITY_OUTPUT_RESULTS_FILE 73