Clone of official tools

Committer:
Anders Blomdell
Date:
Thu Feb 04 17:17:13 2021 +0100
Revision:
47:21ae3e5a7128
Parent:
43:2a7da56ebd24
Add a few normpath calls

Who changed what in which revision?

UserRevisionLine numberNew contents of line
The Other Jimmy 31:8ea194f6145b 1 {
The Other Jimmy 31:8ea194f6145b 2 "GCC_ARM": {
The Other Jimmy 31:8ea194f6145b 3 "common": ["-c", "-Wall", "-Wextra",
The Other Jimmy 31:8ea194f6145b 4 "-Wno-unused-parameter", "-Wno-missing-field-initializers",
The Other Jimmy 31:8ea194f6145b 5 "-fmessage-length=0", "-fno-exceptions", "-fno-builtin",
The Other Jimmy 31:8ea194f6145b 6 "-ffunction-sections", "-fdata-sections", "-funsigned-char",
The Other Jimmy 31:8ea194f6145b 7 "-MMD", "-fno-delete-null-pointer-checks",
The Other Jimmy 36:96847d42f010 8 "-fomit-frame-pointer", "-O0", "-g3", "-DMBED_DEBUG",
The Other Jimmy 36:96847d42f010 9 "-DMBED_TRAP_ERRORS_ENABLED=1"],
The Other Jimmy 31:8ea194f6145b 10 "asm": ["-x", "assembler-with-cpp"],
The Other Jimmy 31:8ea194f6145b 11 "c": ["-std=gnu99"],
The Other Jimmy 31:8ea194f6145b 12 "cxx": ["-std=gnu++98", "-fno-rtti", "-Wvla"],
The Other Jimmy 31:8ea194f6145b 13 "ld": ["-Wl,--gc-sections", "-Wl,--wrap,main", "-Wl,--wrap,_malloc_r",
The Other Jimmy 36:96847d42f010 14 "-Wl,--wrap,_free_r", "-Wl,--wrap,_realloc_r", "-Wl,--wrap,_memalign_r",
The Other Jimmy 36:96847d42f010 15 "-Wl,--wrap,_calloc_r", "-Wl,--wrap,exit", "-Wl,--wrap,atexit",
The Other Jimmy 36:96847d42f010 16 "-Wl,-n"]
The Other Jimmy 31:8ea194f6145b 17 },
theotherjimmy 40:7d3fa6b99b2b 18 "ARMC6": {
theotherjimmy 40:7d3fa6b99b2b 19 "common": ["-c", "--target=arm-arm-none-eabi", "-mthumb", "-g", "-O0",
theotherjimmy 40:7d3fa6b99b2b 20 "-Wno-armcc-pragma-push-pop", "-Wno-armcc-pragma-anon-unions",
theotherjimmy 40:7d3fa6b99b2b 21 "-DMULADDC_CANNOT_USE_R7", "-fdata-sections",
theotherjimmy 43:2a7da56ebd24 22 "-fno-exceptions", "-MMD", "-D_LIBCPP_EXTERN_TEMPLATE(...)="],
theotherjimmy 40:7d3fa6b99b2b 23 "asm": [],
theotherjimmy 40:7d3fa6b99b2b 24 "c": ["-D__ASSERT_MSG", "-std=gnu99"],
theotherjimmy 40:7d3fa6b99b2b 25 "cxx": ["-fno-rtti", "-std=gnu++98"],
theotherjimmy 43:2a7da56ebd24 26 "ld": ["--verbose", "--remove", "--show_full_path", "--legacyalign"]
theotherjimmy 40:7d3fa6b99b2b 27 },
The Other Jimmy 31:8ea194f6145b 28 "ARM": {
The Other Jimmy 31:8ea194f6145b 29 "common": ["-c", "--gnu", "-Otime", "--split_sections",
The Other Jimmy 31:8ea194f6145b 30 "--apcs=interwork", "--brief_diagnostics", "--restrict",
The Other Jimmy 36:96847d42f010 31 "--multibyte_chars", "-O0", "-g", "-DMBED_DEBUG",
The Other Jimmy 36:96847d42f010 32 "-DMBED_TRAP_ERRORS_ENABLED=1"],
The Other Jimmy 31:8ea194f6145b 33 "asm": [],
The Other Jimmy 31:8ea194f6145b 34 "c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
The Other Jimmy 31:8ea194f6145b 35 "cxx": ["--cpp", "--no_rtti", "--no_vla"],
theotherjimmy 40:7d3fa6b99b2b 36 "ld": ["--show_full_path"]
The Other Jimmy 31:8ea194f6145b 37 },
The Other Jimmy 31:8ea194f6145b 38 "uARM": {
The Other Jimmy 31:8ea194f6145b 39 "common": ["-c", "--gnu", "-Otime", "--split_sections",
The Other Jimmy 31:8ea194f6145b 40 "--apcs=interwork", "--brief_diagnostics", "--restrict",
The Other Jimmy 31:8ea194f6145b 41 "--multibyte_chars", "-O0", "-D__MICROLIB", "-g",
The Other Jimmy 36:96847d42f010 42 "--library_type=microlib", "-DMBED_RTOS_SINGLE_THREAD", "-DMBED_DEBUG",
The Other Jimmy 36:96847d42f010 43 "-DMBED_TRAP_ERRORS_ENABLED=1"],
The Other Jimmy 31:8ea194f6145b 44 "asm": [],
The Other Jimmy 31:8ea194f6145b 45 "c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
The Other Jimmy 31:8ea194f6145b 46 "cxx": ["--cpp", "--no_rtti", "--no_vla"],
The Other Jimmy 31:8ea194f6145b 47 "ld": ["--library_type=microlib"]
The Other Jimmy 31:8ea194f6145b 48 },
The Other Jimmy 31:8ea194f6145b 49 "IAR": {
The Other Jimmy 31:8ea194f6145b 50 "common": [
The Other Jimmy 31:8ea194f6145b 51 "--no_wrap_diagnostics", "-e",
The Other Jimmy 36:96847d42f010 52 "--diag_suppress=Pa050,Pa084,Pa093,Pa082", "-On", "-r", "-DMBED_DEBUG",
theotherjimmy 43:2a7da56ebd24 53 "-DMBED_TRAP_ERRORS_ENABLED=1", "--enable_restrict"],
The Other Jimmy 31:8ea194f6145b 54 "asm": [],
theotherjimmy 43:2a7da56ebd24 55 "c": ["--vla", "--diag_suppress=Pe546"],
The Other Jimmy 31:8ea194f6145b 56 "cxx": ["--guard_calls", "--no_static_destruction"],
The Other Jimmy 31:8ea194f6145b 57 "ld": ["--skip_dynamic_initialization", "--threaded_lib"]
The Other Jimmy 31:8ea194f6145b 58 }
The Other Jimmy 31:8ea194f6145b 59 }