diff options
| author | hathach <[email protected]> | 2024-04-17 20:06:13 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-04-19 23:16:57 +0700 |
| commit | 3442a87d5b52112a8bc4672322d488703e4ee23e (patch) | |
| tree | 05cc69e08bfbda4d4114842304ab4fe67c7df466 /test | |
| parent | 96f7ca02bff64021b14ed84544df873a0d694a79 (diff) | |
- clang h743 build and run cdc_msc ok
- switch unit test back to gcc, since path to clang conflict on local setup (x86 and arm)
Diffstat (limited to 'test')
| -rw-r--r-- | test/unit-test/project.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/unit-test/project.yml b/test/unit-test/project.yml index 82528f68c..7fbbabfe6 100644 --- a/test/unit-test/project.yml +++ b/test/unit-test/project.yml @@ -81,20 +81,20 @@ :tools: :test_compiler: - :executable: clang - :name: 'clang compiler' + :executable: gcc + :name: 'gcc compiler' :arguments: - -I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE #expands to -I search paths - -I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR #expands to -I search paths - -D$: COLLECTION_DEFINES_TEST_AND_VENDOR #expands to all -D defined symbols - - -fsanitize=address + #- -fsanitize=address - -c ${1} #source code input file (Ruby method call param list sub) - -o ${2} #object file output (Ruby method call param list sub) :test_linker: - :executable: clang - :name: 'clang linker' + :executable: gcc + :name: 'gcc linker' :arguments: - - -fsanitize=address + #- -fsanitize=address - ${1} #list of object files to link (Ruby method call param list sub) - -o ${2} #executable file output (Ruby method call param list sub) |
